-
Notifications
You must be signed in to change notification settings - Fork 2
ActionType Enum
sequenze edited this page Jun 15, 2017
·
2 revisions
This entity constitutes the supported actions of the distributed tuple space.
Object > ValueType > Enum
public sealed enum ActionType : Enum, IComparable, IFormattable, IConvertible| Member name | Description |
|---|---|
| GET_REQUEST | Defines the action as a request for executing a Get operation on the remote space. |
| GETP_REQUEST | Defines the action as a request for executing a GetP operation on the remote space. |
| GETALL_REQUEST | Defines the action as a request for executing a GetAll operation on the remote space. |
| QUERY_REQUEST | Defines the action as a request for executing a Query operation on the remote space. |
| QUERYP_REQUEST | Defines the action as a request for executing a QueryP operation on the remote space. |
| QUERYALL_REQUEST | Defines the action as a request for executing a QueryAll operation on the remote space. |
| PUT_REQUEST | Defines the action as a request for executing a Put operation on the remote space. |
| GET_RESPONSE | Defines the action as a response of executing a Get operation on the remote space. |
| GETP_RESPONSE | Defines the action as a response for executing a GetP operation on the remote space. |
| GETALL_RESPONSE | Defines the action as a response for executing a GetAll operation on the remote space. |
| QUERY_RESPONSE | Defines the action as a response for executing a Query operation on the remote space. |
| QUERYP_RESPONSE | Defines the action as a response for executing a QueryP operation on the remote space. |
| QUERYALL_RESPONSE | Defines the action as a response for executing a QueryAll operation on the remote space. |
| PUT_RESPONSE | Defines the action as a response for executing a Put operation on the remote space. |