|
GigaSpaces XAP 10.0.1 API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ReadModifiers | |
---|---|
com.gigaspaces.client | Deprecated: use org.openspaces.core instead. |
org.openspaces.core | Top level core package holding main OpenSpaces API for Space (GigaSpace) and Map (GigaMap) and the ability to create it. |
Uses of ReadModifiers in com.gigaspaces.client |
---|
Fields in com.gigaspaces.client declared as ReadModifiers | |
---|---|
static ReadModifiers |
ReadModifiers.DIRTY_READ
When a search for matching entries encounters an entry locked under a different uncommitted transaction, the lock is ignored and matching is performed on the uncommitted state. |
static ReadModifiers |
ReadModifiers.EXCLUSIVE_READ_LOCK
The resulting entries are locked, blocking update/remove from other transactions. |
static ReadModifiers |
ReadModifiers.FIFO
Search for matching entries using First-In-First-Out order. |
static ReadModifiers |
ReadModifiers.FIFO_GROUPING_POLL
Search for matching entries in the FIFO group indicated in the template. |
static ReadModifiers |
ReadModifiers.IF_EXISTS
Blocks only if there's a matching entry which is locked by another transaction. |
static ReadModifiers |
ReadModifiers.IGNORE_PARTIAL_FAILURE
If one or more partitions are not available during the operation, ignore them and return partial results based on the available partitions (instead of throwing an ReadMultipleException which contains the partial results, which is the default behavior). |
static ReadModifiers |
ReadModifiers.MEMORY_ONLY_SEARCH
Search for matching entries in cache memory only (do not use the underlying EDS). |
static ReadModifiers |
ReadModifiers.NONE
Empty - use operation default behavior. |
static ReadModifiers |
ReadModifiers.READ_COMMITTED
When a search for matching entries encounters an entry locked under a different uncommitted transaction, the lock is honored and matching is performed on the committed state. |
static ReadModifiers |
ReadModifiers.REPEATABLE_READ
When a search for matching entries encounters an entry locked under a different uncommitted transaction, the lock is honored and the entry is skipped (if the operation is invoked with a timeout it will block until the entry will be released or the timeout expires). |
Methods in com.gigaspaces.client that return ReadModifiers | |
---|---|
ReadModifiers |
ReadModifiers.add(ReadModifiers modifiers)
Creates a new modifiers instance which is a union of the specified modifiers and this instance. |
protected ReadModifiers |
ReadModifiers.create(int modifiers)
|
ReadModifiers |
ReadModifiers.remove(ReadModifiers modifiers)
Creates a new modifiers instance which excludes the specified modifiers from this instance. |
ReadModifiers |
ReadModifiers.setIsolationLevel(ReadModifiers isolationLevel)
Creates a new modifiers instance with the specified isolation level set and any other isolation level unset. |
Methods in com.gigaspaces.client with parameters of type ReadModifiers | |
---|---|
ReadModifiers |
ReadModifiers.add(ReadModifiers modifiers)
Creates a new modifiers instance which is a union of the specified modifiers and this instance. |
boolean |
ReadModifiers.contains(ReadModifiers modifiers)
Checks if the specified modifier is set. |
ReadModifiers |
ReadModifiers.remove(ReadModifiers modifiers)
Creates a new modifiers instance which excludes the specified modifiers from this instance. |
ReadModifiers |
ReadModifiers.setIsolationLevel(ReadModifiers isolationLevel)
Creates a new modifiers instance with the specified isolation level set and any other isolation level unset. |
Constructors in com.gigaspaces.client with parameters of type ReadModifiers | |
---|---|
ReadModifiers(ReadModifiers... modifiers)
Creates a new modifiers from the specified modifiers. |
|
ReadModifiers(ReadModifiers modifiers1,
ReadModifiers modifiers2)
Creates a new modifiers from the specified modifiers. |
|
ReadModifiers(ReadModifiers modifiers1,
ReadModifiers modifiers2,
ReadModifiers modifiers3)
Creates a new modifiers from the specified modifiers. |
Uses of ReadModifiers in org.openspaces.core |
---|
Methods in org.openspaces.core that return ReadModifiers | |
---|---|
ReadModifiers |
DefaultGigaSpace.getDefaultReadModifiers()
|
ReadModifiers |
GigaSpace.getDefaultReadModifiers()
Gets the default ReadModifiers set during this GigaSpace configuration. |
static ReadModifiers |
IsolationLevelHelpers.mergeWithIsolationLevelModifiersIfNeeded(ReadModifiers modifiers,
GigaSpace gigaSpace)
|
static ReadModifiers |
IsolationLevelHelpers.toReadModifiers(int isolationLevel)
|
Methods in org.openspaces.core with parameters of type ReadModifiers | ||
---|---|---|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers,
AsyncFutureListener<T> listener)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(T template,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.asyncRead(T template,
long timeout,
ReadModifiers modifiers)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(T template,
long timeout,
ReadModifiers modifiers,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncRead(T template,
long timeout,
ReadModifiers modifiers,
AsyncFutureListener<T> listener)
Reads any matching entry from the space in an asynchronous manner. |
|
GigaSpaceConfigurer |
GigaSpaceConfigurer.defaultReadModifiers(ReadModifiers defaultReadModifiers)
|
|
static ReadModifiers |
IsolationLevelHelpers.mergeWithIsolationLevelModifiersIfNeeded(ReadModifiers modifiers,
GigaSpace gigaSpace)
|
|
|
DefaultGigaSpace.read(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.read(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers)
Read any matching object from the space, blocking until one exists. |
|
|
DefaultGigaSpace.read(T template,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.read(T template,
long timeout,
ReadModifiers modifiers)
Read any matching object from the space, blocking until one exists. |
|
|
DefaultGigaSpace.readById(Class<T> clazz,
Object id,
Object routing,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.readById(Class<T> clazz,
Object id,
Object routing,
long timeout,
ReadModifiers modifiers)
Read an object from the space matching its id, the class and the routing value. |
|
|
DefaultGigaSpace.readById(IdQuery<T> query,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.readById(IdQuery<T> query,
long timeout,
ReadModifiers modifiers)
Read an object from the space matching the specified id query. |
|
|
DefaultGigaSpace.readByIds(Class<T> clazz,
Object[] ids,
Object[] routings,
ReadModifiers modifiers)
|
|
|
GigaSpace.readByIds(Class<T> clazz,
Object[] ids,
Object[] routingKeys,
ReadModifiers modifiers)
Read objects from the space matching their IDs, the specified class and the routing keys, with the provided ReadModifiers . |
|
|
DefaultGigaSpace.readByIds(Class<T> clazz,
Object[] ids,
Object routing,
ReadModifiers modifiers)
|
|
|
GigaSpace.readByIds(Class<T> clazz,
Object[] ids,
Object routingKey,
ReadModifiers modifiers)
Read objects from the space matching their IDs, the specified class type and routing key, with the provided ReadModifiers . |
|
|
DefaultGigaSpace.readByIds(IdsQuery<T> query,
ReadModifiers modifiers)
|
|
|
GigaSpace.readByIds(IdsQuery<T> query,
ReadModifiers modifiers)
Read objects from the space matching the specified IDs query, with the provided ReadModifiers . |
|
|
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.readIfExists(ISpaceQuery<T> template,
long timeout,
ReadModifiers modifiers)
Read any matching object from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.readIfExists(T template,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.readIfExists(T template,
long timeout,
ReadModifiers modifiers)
Read any matching object from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.readIfExistsById(Class<T> clazz,
Object id,
Object routing,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.readIfExistsById(Class<T> clazz,
Object id,
Object routing,
long timeout,
ReadModifiers modifiers)
Read an object from the space matching its id, the class and the routing value. |
|
|
DefaultGigaSpace.readIfExistsById(IdQuery<T> query,
long timeout,
ReadModifiers modifiers)
|
|
|
GigaSpace.readIfExistsById(IdQuery<T> query,
long timeout,
ReadModifiers modifiers)
Read an object from the space matching the specified id query. |
|
|
DefaultGigaSpace.readMultiple(ISpaceQuery<T> template,
int maxEntries,
ReadModifiers modifiers)
|
|
|
GigaSpace.readMultiple(ISpaceQuery<T> template,
int maxEntries,
ReadModifiers modifiers)
Read any matching entries from the space. |
|
|
DefaultGigaSpace.readMultiple(T template,
int maxEntries,
ReadModifiers modifiers)
|
|
|
GigaSpace.readMultiple(T template,
int maxEntries,
ReadModifiers modifiers)
Read any matching entries from the space. |
|
void |
DefaultGigaSpace.setDefaultReadModifiers(ReadModifiers defaultReadModifiers)
Sets the default ReadModifiers when excecution DefaultGigaSpace.read(Object) |
|
void |
GigaSpaceFactoryBean.setDefaultReadModifiers(ReadModifiers[] defaultReadModifiers)
Set the default ReadModifiers to be used for read operations
on the GigaSpace instance. |
|
GigaSpaces XAP 10.0.1 API | |||||||||
PREV NEXT | FRAMES NO FRAMES |