|
GigaSpaces XAP 9.7.2 API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TakeModifiers | |
---|---|
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 TakeModifiers in com.gigaspaces.client |
---|
Fields in com.gigaspaces.client declared as TakeModifiers | |
---|---|
static TakeModifiers |
TakeModifiers.EVICT_ONLY
Remove matching entries from memory only (do not remove from the underlying EDS). |
static TakeModifiers |
TakeModifiers.FIFO
Search for matching entries using First-In-First-Out order. |
static TakeModifiers |
TakeModifiers.FIFO_GROUPING_POLL
Search for matching entries in the FIFO group indicated in the template. |
static TakeModifiers |
TakeModifiers.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 TakeMultipleException which contains the partial results, which is the default behavior). |
static TakeModifiers |
TakeModifiers.MEMORY_ONLY_SEARCH
Search for matching entries in cache memory only (do not use the underlying EDS). |
static TakeModifiers |
TakeModifiers.NONE
Empty - use operation default behavior. |
Methods in com.gigaspaces.client that return TakeModifiers | |
---|---|
TakeModifiers |
TakeModifiers.add(TakeModifiers modifiers)
Creates a new modifiers instance which is a union of the specified modifiers and this instance. |
protected TakeModifiers |
TakeModifiers.create(int modifiers)
|
TakeModifiers |
TakeModifiers.remove(TakeModifiers modifiers)
Creates a new modifiers instance which excludes the specified modifiers from this instance. |
Methods in com.gigaspaces.client with parameters of type TakeModifiers | |
---|---|
TakeModifiers |
TakeModifiers.add(TakeModifiers modifiers)
Creates a new modifiers instance which is a union of the specified modifiers and this instance. |
boolean |
TakeModifiers.contains(TakeModifiers modifiers)
Checks if the specified modifier is set. |
TakeModifiers |
TakeModifiers.remove(TakeModifiers modifiers)
Creates a new modifiers instance which excludes the specified modifiers from this instance. |
Constructors in com.gigaspaces.client with parameters of type TakeModifiers | |
---|---|
TakeModifiers(TakeModifiers... modifiers)
Creates a new modifiers from the specified modifiers. |
|
TakeModifiers(TakeModifiers modifiers1,
TakeModifiers modifiers2)
Creates a new modifiers from the specified modifiers. |
|
TakeModifiers(TakeModifiers modifiers1,
TakeModifiers modifiers2,
TakeModifiers modifiers3)
Creates a new modifiers from the specified modifiers. |
Uses of TakeModifiers in org.openspaces.core |
---|
Methods in org.openspaces.core that return TakeModifiers | |
---|---|
TakeModifiers |
DefaultGigaSpace.getDefaultTakeModifiers()
|
TakeModifiers |
GigaSpace.getDefaultTakeModifiers()
Gets the default TakeModifiers set during this GigaSpace configuration. |
Methods in org.openspaces.core with parameters of type TakeModifiers | ||
---|---|---|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers,
AsyncFutureListener<T> listener)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(T template,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.asyncTake(T template,
long timeout,
TakeModifiers modifiers)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(T template,
long timeout,
TakeModifiers modifiers,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncTake(T template,
long timeout,
TakeModifiers modifiers,
AsyncFutureListener<T> listener)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
GigaSpaceConfigurer |
GigaSpaceConfigurer.defaultTakeModifiers(TakeModifiers defaultTakeModifiers)
|
|
void |
DefaultGigaSpace.setDefaultTakeModifiers(TakeModifiers defaultTakeModifiers)
Sets the default TakeModifiers when excecution DefaultGigaSpace.take(Object) |
|
void |
GigaSpaceFactoryBean.setDefaultTakeModifiers(TakeModifiers[] defaultTakeModifiers)
Set the default TakeModifiers to be used for take operations
on the GigaSpace instance. |
|
|
DefaultGigaSpace.take(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.take(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers)
Take (remove) any matching entry from the space, blocking until one exists. |
|
|
DefaultGigaSpace.take(T template,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.take(T template,
long timeout,
TakeModifiers modifiers)
Take (remove) any matching entry from the space, blocking until one exists. |
|
|
DefaultGigaSpace.takeById(Class<T> clazz,
Object id,
Object routing,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeById(Class<T> clazz,
Object id,
Object routing,
long timeout,
TakeModifiers modifiers)
Take (remove) an object from the space matching its id, the class and the routing value. |
|
|
DefaultGigaSpace.takeById(IdQuery<T> query,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeById(IdQuery<T> query,
long timeout,
TakeModifiers modifiers)
Take (remove) an object from the space matching the specified id query. |
|
|
DefaultGigaSpace.takeByIds(Class<T> clazz,
Object[] ids,
Object[] routings,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeByIds(Class<T> clazz,
Object[] ids,
Object[] routingKeys,
TakeModifiers modifiers)
Take (remove) objects from the space matching their IDs, the specified class and the routing keys, with the provided ReadModifiers . |
|
|
DefaultGigaSpace.takeByIds(Class<T> clazz,
Object[] ids,
Object routing,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeByIds(Class<T> clazz,
Object[] ids,
Object routingKey,
TakeModifiers modifiers)
Take (remove) objects from the space matching their IDs, the specified class type and routing key, with the provided ReadModifiers . |
|
|
DefaultGigaSpace.takeByIds(IdsQuery<T> query,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeByIds(IdsQuery<T> query,
TakeModifiers modifiers)
Take (remove) objects from the space matching the specified IDs query, with the provided ReadModifiers . |
|
|
DefaultGigaSpace.takeIfExists(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeIfExists(ISpaceQuery<T> template,
long timeout,
TakeModifiers modifiers)
Take (remove) any matching entry from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.takeIfExists(T template,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeIfExists(T template,
long timeout,
TakeModifiers modifiers)
Take (remove) any matching entry from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.takeIfExistsById(Class<T> clazz,
Object id,
Object routing,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeIfExistsById(Class<T> clazz,
Object id,
Object routing,
long timeout,
TakeModifiers modifiers)
Take (remove) an object from the space matching its id, the class and the routing value. |
|
|
DefaultGigaSpace.takeIfExistsById(IdQuery<T> query,
long timeout,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeIfExistsById(IdQuery<T> query,
long timeout,
TakeModifiers modifiers)
Take (remove) an object from the space matching the specified id query. |
|
|
DefaultGigaSpace.takeMultiple(ISpaceQuery<T> template,
int maxEntries,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeMultiple(ISpaceQuery<T> template,
int maxEntries,
TakeModifiers modifiers)
Takes (removes) all the entries matching the specified template from this space. |
|
|
DefaultGigaSpace.takeMultiple(T template,
int maxEntries,
TakeModifiers modifiers)
|
|
|
GigaSpace.takeMultiple(T template,
int maxEntries,
TakeModifiers modifiers)
Takes (removes) all the entries matching the specified template from this space. |
|
GigaSpaces XAP 9.7.2 API | |||||||||
PREV NEXT | FRAMES NO FRAMES |