|
GigaSpaces XAP 7.1 API | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ISpaceQuery | |
|---|---|
| com.gigaspaces.internal.query | |
| com.j_spaces.core.client | Provides GigaSpaces client interface services |
| com.j_spaces.core.client.view | GigaSpace client view files. |
| 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 ISpaceQuery in com.gigaspaces.internal.query |
|---|
| Classes in com.gigaspaces.internal.query that implement ISpaceQuery | |
|---|---|
class |
AbstractSpaceQuery<T>
Common base class for space query implementations. |
| Methods in com.gigaspaces.internal.query that return ISpaceQuery | |
|---|---|
static ISpaceQuery |
SpaceQueryBuilder.create(Class<?> entryClass,
com.gigaspaces.internal.query.predicate.ISpacePredicate... predicates)
Creates a space query using the specified class and predicates. |
static ISpaceQuery |
SpaceQueryBuilder.create(Class<?> entryClass,
com.gigaspaces.internal.query.predicate.ISpacePredicate predicate)
Creates a space query using the specified class and predicate. |
| Uses of ISpaceQuery in com.j_spaces.core.client |
|---|
| Subinterfaces of ISpaceQuery in com.j_spaces.core.client | |
|---|---|
interface |
Query<T>
Deprecated. since 7.1 - Use ISpaceQuery instead. |
| Classes in com.j_spaces.core.client that implement ISpaceQuery | |
|---|---|
class |
ContinousQuery<T>
Extends the SQLQuery interface to allow continuous query. |
class |
SQLQuery<T>
The SQLQuery class is used to query the space using the SQL syntax. |
| Uses of ISpaceQuery in com.j_spaces.core.client.view |
|---|
| Classes in com.j_spaces.core.client.view that implement ISpaceQuery | |
|---|---|
class |
View<T>
Extends the ContinousQuery interface to allow creation of space view. |
| Uses of ISpaceQuery in org.openspaces.core |
|---|
| Methods in org.openspaces.core with parameters of type ISpaceQuery | ||
|---|---|---|
IteratorBuilder |
IteratorBuilder.addTemplate(ISpaceQuery query)
Adds a template that will be used to control the matching entries the iterator will iterate over. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
AsyncFutureListener<T> listener)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
AsyncFutureListener<T> listener)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
int modifiers)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
int modifiers)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
int modifiers,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncRead(ISpaceQuery<T> template,
long timeout,
int modifiers,
AsyncFutureListener<T> listener)
Reads any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
AsyncFutureListener<T> listener)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
AsyncFutureListener<T> listener)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
int modifiers)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
int modifiers)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
int modifiers,
AsyncFutureListener<T> listener)
|
|
|
GigaSpace.asyncTake(ISpaceQuery<T> template,
long timeout,
int modifiers,
AsyncFutureListener<T> listener)
Take (remove) any matching entry from the space in an asynchronous manner. |
|
|
DefaultGigaSpace.read(ISpaceQuery<T> template)
|
|
|
GigaSpace.read(ISpaceQuery<T> template)
Read any matching object from the space, blocking until one exists. |
|
|
DefaultGigaSpace.read(ISpaceQuery<T> template,
long timeout)
|
|
|
GigaSpace.read(ISpaceQuery<T> template,
long timeout)
Read any matching object from the space, blocking until one exists. |
|
|
DefaultGigaSpace.read(ISpaceQuery<T> template,
long timeout,
int modifiers)
|
|
|
GigaSpace.read(ISpaceQuery<T> template,
long timeout,
int modifiers)
Read any matching object from the space, blocking until one exists. |
|
|
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template)
|
|
|
GigaSpace.readIfExists(ISpaceQuery<T> template)
Read any matching object from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template,
long timeout)
|
|
|
GigaSpace.readIfExists(ISpaceQuery<T> template,
long timeout)
Read any matching object from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template,
long timeout,
int modifiers)
|
|
|
GigaSpace.readIfExists(ISpaceQuery<T> template,
long timeout,
int modifiers)
Read any matching object from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.readMultiple(ISpaceQuery<T> template,
int maxEntries)
|
|
|
GigaSpace.readMultiple(ISpaceQuery<T> template,
int maxEntries)
Read any matching entries from the space. |
|
|
DefaultGigaSpace.readMultiple(ISpaceQuery<T> template,
int maxEntries,
int modifiers)
|
|
|
GigaSpace.readMultiple(ISpaceQuery<T> template,
int maxEntries,
int modifiers)
Read any matching entries from the space. |
|
|
DefaultGigaSpace.take(ISpaceQuery<T> template)
|
|
|
GigaSpace.take(ISpaceQuery<T> template)
Take (remove) any matching entry from the space, blocking until one exists. |
|
|
DefaultGigaSpace.take(ISpaceQuery<T> template,
long timeout)
|
|
|
GigaSpace.take(ISpaceQuery<T> template,
long timeout)
Take (remove) any matching entry from the space, blocking until one exists. |
|
|
DefaultGigaSpace.take(ISpaceQuery<T> template,
long timeout,
int modifiers)
|
|
|
GigaSpace.take(ISpaceQuery<T> template,
long timeout,
int modifiers)
Take (remove) any matching entry from the space, blocking until one exists. |
|
|
DefaultGigaSpace.takeIfExists(ISpaceQuery<T> template)
|
|
|
GigaSpace.takeIfExists(ISpaceQuery<T> template)
Take (remove) any matching entry from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.takeIfExists(ISpaceQuery<T> template,
long timeout)
|
|
|
GigaSpace.takeIfExists(ISpaceQuery<T> template,
long timeout)
Take (remove) any matching entry from the space, returning null if
there currently is none. |
|
|
DefaultGigaSpace.takeMultiple(ISpaceQuery<T> template,
int maxEntries)
|
|
|
GigaSpace.takeMultiple(ISpaceQuery<T> template,
int maxEntries)
Takes (removes) all the entries matching the specified template from this space. |
|
|
DefaultGigaSpace.takeMultiple(ISpaceQuery<T> template,
int maxEntries,
int modifiers)
|
|
|
GigaSpace.takeMultiple(ISpaceQuery<T> template,
int maxEntries,
int modifiers)
Takes (removes) all the entries matching the specified template from this space. |
|
|
GigaSpaces XAP 7.1 API | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||