| Package | org.spicefactory.parsley.rpc.cinnamon.config |
| Class | public class ServiceProcessor |
| Inheritance | ServiceProcessor Object |
| Implements | ObjectProcessor |
| Method | Defined By | ||
|---|---|---|---|
ServiceProcessor(target:ManagedObject, name:String, channel:String, timeout:uint)
Creates a new instance. | ServiceProcessor | ||
newFactory(name:String, channel:String, timeout:uint):ObjectProcessorFactory [static]
Creates a new processor factory. | ServiceProcessor | ||
postDestroy():void
Invoked after the destroy method of the target instance has been invoked. | ServiceProcessor | ||
preInit():void
Invoked before the init method of the target instance will be invoked. | ServiceProcessor | ||
| ServiceProcessor | () | Constructor |
public function ServiceProcessor(target:ManagedObject, name:String, channel:String, timeout:uint)Creates a new instance.
Parameterstarget:ManagedObject — the target service object
| |
name:String — the name to register the service with
| |
channel:String — the id of the channel to use for this service
| |
timeout:uint — the timeout to apply
|
| newFactory | () | method |
public static function newFactory(name:String, channel:String, timeout:uint):ObjectProcessorFactoryCreates a new processor factory.
Parameters
name:String — the name to register the service with
| |
channel:String — the id of the channel to use for this service
| |
timeout:uint — the timeout to apply
|
ObjectProcessorFactory — a new processor factory
|
| postDestroy | () | method |
public function postDestroy():voidInvoked after the destroy method of the target instance has been invoked. Implementations will usually unregister message receivers, unwatch bindings, remove listeners or perform similar disposal tasks.
| preInit | () | method |
public function preInit():voidInvoked before the init method of the target instance will be invoked. Implementations will usually set properties, registers message receivers or performs similar configuration tasks for the target instance managed by this processor.