//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2006-2007 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // //////////////////////////////////////////////////////////////////////////////// package mx.messaging.messages { /** * This interface defines the contract for message objects. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ public interface IMessage { //-------------------------------------------------------------------------- // // Properties // //-------------------------------------------------------------------------- //---------------------------------- // body //---------------------------------- /** * The body of a message contains the specific data that needs to be * delivered to the remote destination. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get body():Object; /** * @private */ function set body(value:Object):void; //---------------------------------- // clientId //---------------------------------- /** * The clientId indicates which client sent the message. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get clientId():String; /** * @private */ function set clientId(value:String):void; //---------------------------------- // destination //---------------------------------- /** * The message destination. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get destination():String; /** * @private */ function set destination(value:String):void; //---------------------------------- // headers //---------------------------------- /** * Provides access to the headers of the message. * The headers of a message are an associative array where the key is the * header name. * This property provides access to specialized meta information for the * specific message instance. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get headers():Object; /** * @private */ function set headers(value:Object):void; //---------------------------------- // messageId //---------------------------------- /** * The unique id for the message. * The message id can be used to correlate a response to the original * request message in request-response messaging scenarios. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get messageId():String; /** * @private */ function set messageId(value:String):void; //---------------------------------- // timestamp //---------------------------------- /** * Provides access to the time stamp for the message. * A time stamp is the date and time that the message was sent. * The time stamp is used for tracking the message through the system, * ensuring quality of service levels and providing a mechanism for * expiration. * * @see #timeToLive * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get timestamp():Number; /** * @private */ function set timestamp(value:Number):void; //---------------------------------- // timeToLive //---------------------------------- /** * The time to live value of a message indicates how long the message * should be considered valid and deliverable. * This value works in conjunction with the timestamp value. * Time to live is the number of milliseconds that this message remains * valid starting from the specified timestamp value. * For example, if the timestamp value is 04/05/05 1:30:45 PST * and the timeToLive value is 5000, then this message will * expire at 04/05/05 1:30:50 PST. * Once a message expires it will not be delivered to any other clients. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function get timeToLive():Number; /** * @private */ function set timeToLive(value:Number):void; //-------------------------------------------------------------------------- // // Methods // //-------------------------------------------------------------------------- /** * This method will return a string representation of the message. * * @return String representation of the message. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion BlazeDS 4 * @productversion LCDS 3 */ function toString():String; } }