rule
Interface Effector

All Known Implementing Classes:
SensorEffectorTest, BestBuyerAgent, BestSellerAgent

public abstract interface Effector

The Effector interface allows any class to be called as an effector by a rule.


Method Summary
 long effector(java.lang.Object obj, java.lang.String eName, java.lang.String args)
          Defines the effector method that must be implemented by every class that can be called as an effector.
 

Method Detail

effector

public long effector(java.lang.Object obj,
                     java.lang.String eName,
                     java.lang.String args)
Defines the effector method that must be implemented by every class that can be called as an effector.
Parameters:
obj - the Object that implements an effector
eName - the String object that contains the name of the effector
args - the String object that contains the parameters for the effector
Returns:
the long value (usually a status code)