Package jadex.bridge
Interface IComponentStep<T>
-
- All Known Subinterfaces:
IConditionalComponentStep<T>
,IPriorityComponentStep<T>
,ITransferableStep<T>
,ITypedComponentStep<T>
- All Known Implementing Classes:
AdoptGoalAction
,DecouplingInterceptor.InvokeMethodStep
,DispatchGoalStep
,DropGoalAction
,ExecutePlanStepAction
,ExecuteProcessThread
,FindApplicableCandidatesAction
,ImmediateComponentStep
,SelectCandidatesAction
,SetBeliefStep
,StepChain
public interface IComponentStep<T>
Interface for a component step. For making steps in anonymous inner classes properly serializable the @XMLClassname annotation has to be provided or a static field for the name has to be declared:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<T>
execute(IInternalAccess ia)
Execute the command.
-
-
-
Method Detail
-
execute
IFuture<T> execute(IInternalAccess ia)
Execute the command.- Parameters:
args
- The argument(s) for the call.- Returns:
- The result of the command.
-
-