Packageorg.spicefactory.parsley.core.processor
Interfacepublic interface StatefulProcessor extends ObjectProcessor
Implementors ManagedEventsProcessor, MessageDispatcherProcessor, MessageReceiverProcessor, ObserveMethodProcessor, PersistentPublisherProcessor, PublisherProcessor, ResourceBindingProcessor, SubscriberProcessor

Interface to be implemented by all object processors that keep state internally that is tied to one specific target instance. An example is creating a message receiver for a target instance and remembering it so that it can be unregistered when the object gets removed.



Public Methods
 MethodDefined By
  
Creates a clone of this processor by omitting all internal state that is tied to one particular target instance.
StatefulProcessor
 Inherited
destroy(target:ManagedObject):void
Invoked when the target instance gets removed from the Context.
ObjectProcessor
 Inherited
init(target:ManagedObject):void
Invoked during initialization of the target instance.
ObjectProcessor
Method Detail
clone()method
public function clone():StatefulProcessor

Creates a clone of this processor by omitting all internal state that is tied to one particular target instance.

Returns
StatefulProcessor — a clone of this processor