01: /** 02: * 03: */package org.drools.concurrent; 04: 05: import java.io.Serializable; 06: 07: import org.drools.WorkingMemory; 08: 09: public interface Command extends Serializable { 10: void execute(WorkingMemory workingMemory); 11: }