| Paket | mx.data.messages |
| Sınıf | public class ManagedRemotingMessage |
| Miras Alma | ManagedRemotingMessage AsyncMessage AbstractMessage Object |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
| Özellik | Tanımlayan: | ||
|---|---|---|---|
![]() | body : Object
The body of a message contains the specific data that needs to be
delivered to the remote destination. | AbstractMessage | |
![]() | clientId : String
The clientId indicates which MessageAgent sent the message. | AbstractMessage | |
![]() | constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | |
![]() | correlationId : String
Provides access to the correlation id of the message. | AsyncMessage | |
![]() | destination : String
The message destination. | AbstractMessage | |
![]() | headers : Object
The headers of a message are an associative array where the key is the
header name and the value is the header value. | AbstractMessage | |
![]() | messageId : String
The unique id for the message. | AbstractMessage | |
| operation : uint
Provides access to the operation/command of this message. | ManagedRemotingMessage | ||
| operationMethodName : String
The target method to invoke on the managed remote service. | ManagedRemotingMessage | ||
![]() | timestamp : Number
Provides access to the time stamp for the message. | AbstractMessage | |
![]() | timeToLive : Number
The time to live value of a message indicates how long the message
should be considered valid and deliverable. | AbstractMessage | |
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
Constructor. | ManagedRemotingMessage | ||
[statik]
Provides a description of the operation specified. | ManagedRemotingMessage | ||
![]() |
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | |
![]() |
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | |
![]() |
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | |
![]() |
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | |
![]() |
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | |
![]() |
Returns a string representation of the message. | AbstractMessage | |
![]() |
Belirtilen nesnenin temel değerini döndürür. | Object | |
| Sabit | Tanımlayan: | ||
|---|---|---|---|
| CREATE_OPERATION : uint = 0 [statik]
A create operation. | ManagedRemotingMessage | ||
| DELETE_OPERATION : uint = 4 [statik]
A delete operation. | ManagedRemotingMessage | ||
| FILL_ASSOCIATION_OPERATION : uint = 7 [statik]
A fill operation on an association. | ManagedRemotingMessage | ||
| FILL_OPERATION : uint = 1 [statik]
A fill operation. | ManagedRemotingMessage | ||
| FIND_ITEM_OPERATION : uint = 5 [statik]
A fill operation. | ManagedRemotingMessage | ||
| GET_OPERATION : uint = 2 [statik]
A Get operation. | ManagedRemotingMessage | ||
| INCLUDE_OPERATION : uint = 6 [statik]
For simple invocation of a ManagedRemoteService method. | ManagedRemotingMessage | ||
| REMOTE_ALIAS : String = "flex.data.messages.ManagedRemotingMessage" [statik]
Remote alias specifying the fully qualified server side class corresponding
to this class. | ManagedRemotingMessage | ||
| UNKNOWN_OPERATION : uint = 1000 [statik]
Code for an unknown operation type. | ManagedRemotingMessage | ||
| UPDATE_OPERATION : uint = 3 [statik]
An update operation. | ManagedRemotingMessage | ||
operation | özellik |
public var operation:uint| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
Provides access to the operation/command of this message.
Operations indicate how the remote destination should process this message.
To display a description of operation type use the
getOperationAsString method.
İlgili API Öğeleri
operationMethodName | özellik |
public var operationMethodName:String| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.6 |
The target method to invoke on the managed remote service.
ManagedRemotingMessage | () | Yapıcı |
public function ManagedRemotingMessage()| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
Constructor.
getOperationAsString | () | yöntem |
public static function getOperationAsString(op:uint):String| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
Provides a description of the operation specified.
This method is used in toString() operations on this message.
Parametreler
op:uint — The operation.
|
String — A String representation of the operation, or "unknown" if the operation is undefined.
|
Örnek ( Bu örnek nasıl kullanılır? )
var msg:ManagedRemotingMessage = ManagedRemotingMessage(event.message);
trace("Current operation -'"+
ManagedRemotingMessage.getOperationAsString(msg.operation)+ "'.");
CREATE_OPERATION | Sabit |
public static const CREATE_OPERATION:uint = 0| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
A create operation.
DELETE_OPERATION | Sabit |
public static const DELETE_OPERATION:uint = 4| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
A delete operation.
FILL_ASSOCIATION_OPERATION | Sabit |
public static const FILL_ASSOCIATION_OPERATION:uint = 7| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
A fill operation on an association. Used on the server only. Managed remoting clients send fill_association messages via a DataMessage to the managed entity destination, not the service destination.
FILL_OPERATION | Sabit |
public static const FILL_OPERATION:uint = 1| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
A fill operation. Used on the server only. Managed remoting clients send fill messages via a DataMessage to the managed entity destination, not the service destination.
FIND_ITEM_OPERATION | Sabit |
public static const FIND_ITEM_OPERATION:uint = 5| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
A fill operation. Used on the server only. Managed remoting clients send findItem messages via a DataMessage to the managed entity destination, not the service destination.
GET_OPERATION | Sabit |
public static const GET_OPERATION:uint = 2| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 2.6 |
A Get operation. Used on the server only. Managed remoting clients send get messages via a DataMessage to the managed entity destination, not the service destination.
INCLUDE_OPERATION | Sabit |
public static const INCLUDE_OPERATION:uint = 6| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
For simple invocation of a ManagedRemoteService method.
REMOTE_ALIAS | Sabit |
public static const REMOTE_ALIAS:String = "flex.data.messages.ManagedRemotingMessage"| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
Remote alias specifying the fully qualified server side class corresponding to this class.
UNKNOWN_OPERATION | Sabit |
public static const UNKNOWN_OPERATION:uint = 1000| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
Code for an unknown operation type.
UPDATE_OPERATION | Sabit |
public static const UPDATE_OPERATION:uint = 3| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.6 |
| Çalışma Zamanı Sürümleri: | Flash Player 10.2, AIR 2.6 |
An update operation.
Tue Jun 12 2018, 01:09 PM Z
Miras Alınan Genel Özellikleri Gizle
Miras Alınan Genel Özellikleri Göster