| Package | Description |
|---|---|
| com.tangosol.net |
Contains basic cluster interfaces and factories.
|
| Modifier and Type | Field and Description |
|---|---|
protected static AsyncNamedCache.OrderBy |
AsyncNamedCache.OrderBy.NONE
The none-order singleton.
|
protected static AsyncNamedCache.OrderBy |
AsyncNamedCache.OrderBy.THREAD
The thread-order singleton.
|
| Modifier and Type | Method and Description |
|---|---|
static AsyncNamedCache.OrderBy |
AsyncNamedCache.OrderBy.custom(IntSupplier supplierOrderId)
Return the order that will use the specified supplier to provide unit-of-order for each async operation.
|
static AsyncNamedCache.OrderBy |
AsyncNamedCache.OrderBy.id(int nOrderId)
Return the order that will use the specified unit-of-order for all async operations, regardless of whether they were invoked from the same client thread or not.
|
static AsyncNamedCache.OrderBy |
AsyncNamedCache.OrderBy.none()
Return the order that will allow the server to parallelize the execution of async operations across multiple threads, regardless of whether they were invoked from the same client thread or not.
|
static AsyncNamedCache.OrderBy |
AsyncNamedCache.OrderBy.thread()
Return the order that will ensure that all operations invoked from the same client thread are executed on the server sequentially, using the same
unit-of-order. |