-
Notifications
You must be signed in to change notification settings - Fork 2
ConnectionMode Enum
sequenze edited this page Jun 15, 2017
·
2 revisions
This entity constitutes the supported connection modes when communicating with the distributed tuple space.
Object > ValueType > Enum
public sealed enum ConnectionMode : Enum, IComparable, IFormattable, IConvertible
Member name | Description |
---|---|
CONN | CONN is a simple request/response pattern where the underlying connection is terminated after each operation. |
PUSH | PUSH is a request/response pattern where the underlying connection is terminated after the request is sent. Once the space repository has completed the execution of the operation, it then connects back to the requestee, and sends the response. |
PULL | PULL is a request/response pattern using polling. The underlying connection is terminated after the request is sent. The requestee then repeatedly re-establishes the connection prompting for status on the operation. Once the space repository has completed the execution of the operation, it then sends the response. |
KEEP | KEEP is a request/response pattern where the underlying connection is kept alive throughout the entire session. |