Package | mx.messaging.channels |
Class | public class PollingChannel |
Inheritance | PollingChannel Channel flash.events.EventDispatcher |
Subclasses | HTTPChannel, NetConnectionChannel |
Language Version : | ActionScript 3.0 |
Product Versions : | BlazeDS 4, LCDS 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Method | Defined By | ||
---|---|---|---|
PollingChannel(id:String = null, uri:String = null)
Creates a new PollingChannel instance with the specified id. | PollingChannel | ||
applySettings(settings:XML):void
Subclasses should override this method to apply any settings that may be
necessary for an individual channel. | Channel | ||
connect(channelSet:ChannelSet):void
Connects the ChannelSet to the Channel. | Channel | ||
disablePolling():void
Disables polling based on the number of times enablePolling()
and disablePolling() have been invoked. | PollingChannel | ||
disconnect(channelSet:ChannelSet):void
Disconnects the ChannelSet from the Channel. | Channel | ||
enablePolling():void
Enables polling based on the number of times enablePolling()
and disablePolling() have been invoked. | PollingChannel | ||
logout(agent:MessageAgent):void
Sends a CommandMessage to the server to logout if the Channel is connected. | Channel | ||
poll():void
Initiates a poll operation if there are consumers subscribed to this channel,
and polling is enabled for this channel. | PollingChannel | ||
[override]
Sends the specified message to its target destination. | PollingChannel | ||
setCredentials(credentials:String, agent:MessageAgent = null, charset:String = null):void
Sets the credentials to the specified value. | Channel |
Constant | Defined By | ||
---|---|---|---|
CONNECT_TIMEOUT_SECONDS : String = connect-timeout-seconds [static] | Channel | ||
ENABLE_SMALL_MESSAGES : String = enable-small-messages [static] | Channel | ||
FALSE : String = false [static] | Channel | ||
LOGIN_AFTER_DISCONNECT : String = login-after-disconnect [static] | PollingChannel | ||
PIGGYBACKING_ENABLED : String = piggybacking-enabled [static] | PollingChannel | ||
POLLING_INTERVAL_LEGACY : String = polling-interval-seconds [static] | PollingChannel | ||
POLLING_INTERVAL_MILLIS : String = polling-interval-millis [static] | PollingChannel | ||
RECORD_MESSAGE_SIZES : String = record-message-sizes [static] | Channel | ||
RECORD_MESSAGE_TIMES : String = record-message-times [static] | Channel | ||
REQUEST_TIMEOUT_SECONDS : String = request-timeout-seconds [static] | Channel | ||
SERIALIZATION : String = serialization [static] | Channel | ||
TRUE : String = true [static] | Channel |
PollingChannel | () | Constructor |
public function PollingChannel(id:String = null, uri:String = null)
Language Version : | ActionScript 3.0 |
Product Versions : | BlazeDS 4, LCDS 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Creates a new PollingChannel instance with the specified id. Once a PollingChannel is connected and begins polling, it will issue a poll request once every three seconds by default.
Note: The PollingChannel type should not be constructed directly. Instead create instances of protocol specific subclasses such as HTTPChannel or AMFChannel that extend it.
Parametersid:String (default = null ) — The id of this Channel.
| |
uri:String (default = null ) — The uri for this Channel.
|
disablePolling | () | method |
public function disablePolling():void
Language Version : | ActionScript 3.0 |
Product Versions : | BlazeDS 4, LCDS 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Disables polling based on the number of times enablePolling()
and disablePolling()
have been invoked. If the net result is to disable
polling the channel stops polling.
Invoked automatically based upon subscribing or unsubscribing from a remote destination over a PollingChannel.
enablePolling | () | method |
public function enablePolling():void
Language Version : | ActionScript 3.0 |
Product Versions : | BlazeDS 4, LCDS 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Enables polling based on the number of times enablePolling()
and disablePolling()
have been invoked. If the net result is to enable
polling the channel will poll the server on behalf of connected MessageAgents.
Invoked automatically based upon subscribing or unsubscribing from a remote destination over a PollingChannel.
poll | () | method |
public function poll():void
Language Version : | ActionScript 3.0 |
Product Versions : | BlazeDS 4, LCDS 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Initiates a poll operation if there are consumers subscribed to this channel, and polling is enabled for this channel. Note that this method will not start a new poll if one is currently in progress.
send | () | method |
override public function send(agent:MessageAgent, message:IMessage):void
Language Version : | ActionScript 3.0 |
Product Versions : | BlazeDS 4, LCDS 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Sends the specified message to its target destination.
Subclasses must override the internalSend()
method to
perform the actual send.
PollingChannel
will wrap outbound messages in poll requests if a poll
is not currently outstanding.
Parameters
agent:MessageAgent — The MessageAgent that is sending the message.
| |
message:IMessage — The Message to send.
|
InvalidDestinationError — If neither the MessageAgent nor the
message specify a destination.
|
LOGIN_AFTER_DISCONNECT | Constant |
protected static const LOGIN_AFTER_DISCONNECT:String = login-after-disconnect
PIGGYBACKING_ENABLED | Constant |
protected static const PIGGYBACKING_ENABLED:String = piggybacking-enabled
POLLING_INTERVAL_LEGACY | Constant |
protected static const POLLING_INTERVAL_LEGACY:String = polling-interval-seconds
POLLING_INTERVAL_MILLIS | Constant |
protected static const POLLING_INTERVAL_MILLIS:String = polling-interval-millis