Packageorg.spicefactory.parsley.core.messaging.receiver
Interfacepublic interface MessageReceiver
Implementors AbstractMessageReceiver

Base interface for all types of message receivers a MessageRouter handles.



Public Properties
 PropertyDefined By
  order : int
[read-only] The execution order for this receiver.
MessageReceiver
  selector : *
[read-only] An optional selector value to be used for selecting matching messages.
MessageReceiver
  type : Class
[read-only] The class or interface of the message.
MessageReceiver
Property Detail
orderproperty
order:int  [read-only]

The execution order for this receiver.

Will be processed in ascending order. The default is int.MAX_VALUE.


Implementation
    public function get order():int
selectorproperty 
selector:*  [read-only]

An optional selector value to be used for selecting matching messages.


Implementation
    public function get selector():*
typeproperty 
type:Class  [read-only]

The class or interface of the message. In case of a command observer this may also be interpreted as the type of the command, depending on the kind of receiver.


Implementation
    public function get type():Class