Packagecom.lightstreamer.as_client.events
Classpublic class SendMessageEvent
InheritanceSendMessageEvent Inheritance LSClientEvent Inheritance flash.events.Event
Subclasses SendMessageAbortEvent, SendMessageErrorEvent, SendMessageProcessedEvent

Base class for any event related to a sendMessage call.

See also

com.lightstreamer.as_client.LSClient.sendMessage()


Public Properties
 PropertyDefined By
 Inheritedclient : LSClient
[read-only] The LSClient which this event is related to.
LSClientEvent
  messageProg : uint
[read-only] A number representing the progressive number of the message within its sequence.
SendMessageEvent
  originalMessage : *
[read-only] The original message sent to the server.
SendMessageEvent
Property Detail
messageProgproperty
messageProg:uint  [read-only]

A number representing the progressive number of the message within its sequence. In case a Message instance was supplied to the LSClient.sendMessage() method, it is the prog returned by the call.


Implementation
    public function get messageProg():uint

See also

originalMessageproperty 
originalMessage:*  [read-only]

The original message sent to the server. It is the same object that was supplied to the LSClient.sendMessage() method, hence it can be either a String or a Message instance.


Implementation
    public function get originalMessage():*

See also