Packageorg.spicefactory.parsley.messaging.tag
Classpublic class MessageReceiverDecoratorBase
InheritanceMessageReceiverDecoratorBase Inheritance Object
Subclasses CommandCompleteDecorator, CommandErrorDecorator, CommandResultDecorator, MessageBindingDecorator, MessageErrorDecorator, MessageHandlerDecorator

Base class for decorators used for message receivers that offer the attributes scope, type, selector and order which are common to all builtin receiver tags.



Public Properties
 PropertyDefined By
  order : int = 2.147483647E9
The execution order for this receiver.
MessageReceiverDecoratorBase
  scope : String
The name of the scope this tag should be applied to.
MessageReceiverDecoratorBase
  selector : *
An optional selector value to be used in addition to selecting messages by type.
MessageReceiverDecoratorBase
  type : Class
The type of the messages the receiver wants to handle.
MessageReceiverDecoratorBase
Property Detail
orderproperty
public var order:int = 2.147483647E9

The execution order for this receiver. Will be processed in ascending order.

The default is int.MAX_VALUE.

scopeproperty 
public var scope:String

The name of the scope this tag should be applied to.

selectorproperty 
public var selector:*

An optional selector value to be used in addition to selecting messages by type. Will be checked against the value of the property in the message marked with [Selector] or against the event type if the message is an event and does not have a selector property specified explicitly.

typeproperty 
public var type:Class

The type of the messages the receiver wants to handle.