(仅限 BlazeDS)
mx.messaging.messages
public class AsyncMessage
继承AsyncMessage Inheritance AbstractMessage Inheritance Object
子类 AcknowledgeMessage, CommandMessage

AsyncMessage 是所有异步消息的基类。



公共属性
 属性定义方
 Inheritedbody : Object
消息正文包含需要传递到远程目标的特定数据。
AbstractMessage
 InheritedclientId : String
ClientId 指示发送消息的 MessageAgent。
AbstractMessage
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
  correlationId : String
提供对此消息的相关 ID 的访问权限。
AsyncMessage
 Inheriteddestination : String
消息目标。
AbstractMessage
 Inheritedheaders : Object
消息标头是一个关联数组,其中关键字为标头名称,而值为标头值。
AbstractMessage
 InheritedmessageId : String
消息的唯一 ID。
AbstractMessage
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
 Inheritedtimestamp : Number
提供对消息时间戳的访问权限。
AbstractMessage
 InheritedtimeToLive : Number
消息的生存时间值指示该消息应视为有效且可传送的时间。
AbstractMessage
公共方法
 方法定义方
  
AsyncMessage(body:Object = null, headers:Object = null)
构造正文和标头为空的 AsyncMessage 实例。
AsyncMessage
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回消息的字符串表示形式。
AbstractMessage
 Inherited
返回指定对象的原始值。
Object
公共常量
 常量定义方
 InheritedDESTINATION_CLIENT_ID_HEADER : String = "DSDstClientId"
[静态] 从服务器发出的消息可能按批到达,批处理过程中可能会将这些消息发送给不同的 Consumer 实例。
AbstractMessage
 InheritedENDPOINT_HEADER : String = "DSEndpoint"
[静态] 消息将以所用发送 Channel 的端点 ID 作为标签。
AbstractMessage
 InheritedFLEX_CLIENT_ID_HEADER : String = "DSId"
[静态] 服务器指定标头后,可通过该标头在出站消息中传输全局 FlexClient Id 值。
AbstractMessage
 InheritedREMOTE_CREDENTIALS_CHARSET_HEADER : String = "DSRemoteCredentialsCharset"
[静态] 需要为目标设置远程凭据的消息还需要报告使用此标头创建凭据 String 时所用的字符集编码。
AbstractMessage
 InheritedREMOTE_CREDENTIALS_HEADER : String = "DSRemoteCredentials"
[静态] 需要为目标设置远程凭据的消息采用此标头中的 Base64 编码凭据。
AbstractMessage
 InheritedREQUEST_TIMEOUT_HEADER : String = "DSRequestTimeout"
[静态] 随定义的请求超时发送的消息将用到此标头。
AbstractMessage
 InheritedSTATUS_CODE_HEADER : String = "DSStatusCode"
[静态] 一种状态代码,可以提供有关响应消息性质的上下文。
AbstractMessage
  SUBTOPIC_HEADER : String = "DSSubtopic"
[静态] 由 MessageAgent(已定义 subtopic 属性)发送的消息会在此标头中指示其目标 subtopic。
AsyncMessage
属性详细信息
correlationId属性
correlationId:String  [读写]

提供对此消息的相关 ID 的访问权限。用于对消息进行确认和分段。correlationId 包含此消息引用的前一消息的 messageId



实现
    public function get correlationId():String
    public function set correlationId(value:String):void

另请参见

构造函数详细信息
AsyncMessage()构造函数
public function AsyncMessage(body:Object = null, headers:Object = null)

构造正文和标头为空的 AsyncMessage 实例。除此默认行为外,可能还会将此消息的正文和标头传递给构造函数以便于使用。例如,调用正文的方法为:var msg:AsyncMessage = new AsyncMessage("Body text");;同时调用正文和标头的方法为:var msg:AsyncMessage = new AsyncMessage("Body text", {"customerHeader":"customValue"});

参数
body:Object (default = null) — 为消息指定的可选正文。
 
headers:Object (default = null) — 为消息指定的可选标头。
常量详细信息
SUBTOPIC_HEADER常量
public static const SUBTOPIC_HEADER:String = "DSSubtopic"

由 MessageAgent(已定义 subtopic 属性)发送的消息会在此标头中指示其目标 subtopic。