GigaSpaces XAP 8.0 API

Uses of Interface
com.gigaspaces.query.ISpaceQuery

Packages that use ISpaceQuery
com.gigaspaces.client Deprecated: use org.openspaces.core instead. 
com.gigaspaces.query Provides classes and interfaces to execute queries on space entries. 
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.client
 

Methods in com.gigaspaces.client that return ISpaceQuery
<T> ISpaceQuery<T>
IPojoSpace.snapshot(Object object)
          Deprecated. Since 8.0 - Use GigaSpace instead.
 

Uses of ISpaceQuery in com.gigaspaces.query
 

Classes in com.gigaspaces.query that implement ISpaceQuery
 class IdQuery<T>
          Class to encapsulate information of a query based on a Space ID.
 class IdsQuery<T>
          Class to encapsulate information of a query based on multiple Space IDs.
 

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>
          Deprecated. Since 8.0 - This class has been deprecated and should not be used, use View or SQLQuery instead.
 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>
          Deprecated. Since 8.0.5 - Use SQLQuery Instead.
 

Uses of ISpaceQuery in org.openspaces.core
 

Methods in org.openspaces.core that return ISpaceQuery
<T> ISpaceQuery<T>
DefaultGigaSpace.snapshot(Object entry)
           
<T> ISpaceQuery<T>
GigaSpace.snapshot(Object entry)
          The process of serializing an entry for transmission to a JavaSpaces service will be identical if the same entry is used twice.
 

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.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template)
           
<T> AsyncFuture<T>
GigaSpace.asyncRead(ISpaceQuery<T> template)
          Reads any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template, AsyncFutureListener<T> listener)
           
<T> AsyncFuture<T>
GigaSpace.asyncRead(ISpaceQuery<T> template, AsyncFutureListener<T> listener)
          Reads any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template, long timeout)
           
<T> AsyncFuture<T>
GigaSpace.asyncRead(ISpaceQuery<T> template, long timeout)
          Reads any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template, long timeout, AsyncFutureListener<T> listener)
           
<T> AsyncFuture<T>
GigaSpace.asyncRead(ISpaceQuery<T> template, long timeout, AsyncFutureListener<T> listener)
          Reads any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template, long timeout, int modifiers)
           
<T> AsyncFuture<T>
GigaSpace.asyncRead(ISpaceQuery<T> template, long timeout, int modifiers)
          Reads any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncRead(ISpaceQuery<T> template, long timeout, int modifiers, AsyncFutureListener<T> listener)
           
<T> AsyncFuture<T>
GigaSpace.asyncRead(ISpaceQuery<T> template, long timeout, int modifiers, AsyncFutureListener<T> listener)
          Reads any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template)
           
<T> AsyncFuture<T>
GigaSpace.asyncTake(ISpaceQuery<T> template)
          Take (remove) any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template, AsyncFutureListener<T> listener)
           
<T> AsyncFuture<T>
GigaSpace.asyncTake(ISpaceQuery<T> template, AsyncFutureListener<T> listener)
          Take (remove) any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template, long timeout)
           
<T> AsyncFuture<T>
GigaSpace.asyncTake(ISpaceQuery<T> template, long timeout)
          Take (remove) any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template, long timeout, AsyncFutureListener<T> listener)
           
<T> AsyncFuture<T>
GigaSpace.asyncTake(ISpaceQuery<T> template, long timeout, AsyncFutureListener<T> listener)
          Take (remove) any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template, long timeout, int modifiers)
           
<T> AsyncFuture<T>
GigaSpace.asyncTake(ISpaceQuery<T> template, long timeout, int modifiers)
          Take (remove) any matching entry from the space in an asynchronous manner.
<T> AsyncFuture<T>
DefaultGigaSpace.asyncTake(ISpaceQuery<T> template, long timeout, int modifiers, AsyncFutureListener<T> listener)
           
<T> AsyncFuture<T>
GigaSpace.asyncTake(ISpaceQuery<T> template, long timeout, int modifiers, AsyncFutureListener<T> listener)
          Take (remove) any matching entry from the space in an asynchronous manner.
<T> T
DefaultGigaSpace.read(ISpaceQuery<T> template)
           
<T> T
GigaSpace.read(ISpaceQuery<T> template)
          Read any matching object from the space, blocking until one exists.
<T> T
DefaultGigaSpace.read(ISpaceQuery<T> template, long timeout)
           
<T> T
GigaSpace.read(ISpaceQuery<T> template, long timeout)
          Read any matching object from the space, blocking until one exists.
<T> T
DefaultGigaSpace.read(ISpaceQuery<T> template, long timeout, int modifiers)
           
<T> T
GigaSpace.read(ISpaceQuery<T> template, long timeout, int modifiers)
          Read any matching object from the space, blocking until one exists.
<T> T
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template)
           
<T> T
GigaSpace.readIfExists(ISpaceQuery<T> template)
          Read any matching object from the space, returning null if there currently is none.
<T> T
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template, long timeout)
           
<T> T
GigaSpace.readIfExists(ISpaceQuery<T> template, long timeout)
          Read any matching object from the space, returning null if there currently is none.
<T> T
DefaultGigaSpace.readIfExists(ISpaceQuery<T> template, long timeout, int modifiers)
           
<T> T
GigaSpace.readIfExists(ISpaceQuery<T> template, long timeout, int modifiers)
          Read any matching object from the space, returning null if there currently is none.
<T> T[]
DefaultGigaSpace.readMultiple(ISpaceQuery<T> template)
           
<T> T[]
GigaSpace.readMultiple(ISpaceQuery<T> template)
          Read any matching entries from the space.
<T> T[]
DefaultGigaSpace.readMultiple(ISpaceQuery<T> template, int maxEntries)
           
<T> T[]
GigaSpace.readMultiple(ISpaceQuery<T> template, int maxEntries)
          Read any matching entries from the space.
<T> T[]
DefaultGigaSpace.readMultiple(ISpaceQuery<T> template, int maxEntries, int modifiers)
           
<T> T[]
GigaSpace.readMultiple(ISpaceQuery<T> template, int maxEntries, int modifiers)
          Read any matching entries from the space.
<T> T
DefaultGigaSpace.take(ISpaceQuery<T> template)
           
<T> T
GigaSpace.take(ISpaceQuery<T> template)
          Take (remove) any matching entry from the space, blocking until one exists.
<T> T
DefaultGigaSpace.take(ISpaceQuery<T> template, long timeout)
           
<T> T
GigaSpace.take(ISpaceQuery<T> template, long timeout)
          Take (remove) any matching entry from the space, blocking until one exists.
<T> T
DefaultGigaSpace.take(ISpaceQuery<T> template, long timeout, int modifiers)
           
<T> T
GigaSpace.take(ISpaceQuery<T> template, long timeout, int modifiers)
          Take (remove) any matching entry from the space, blocking until one exists.
<T> T
DefaultGigaSpace.takeIfExists(ISpaceQuery<T> template)
           
<T> T
GigaSpace.takeIfExists(ISpaceQuery<T> template)
          Take (remove) any matching entry from the space, returning null if there currently is none.
<T> T
DefaultGigaSpace.takeIfExists(ISpaceQuery<T> template, long timeout)
           
<T> T
GigaSpace.takeIfExists(ISpaceQuery<T> template, long timeout)
          Take (remove) any matching entry from the space, returning null if there currently is none.
<T> T
DefaultGigaSpace.takeIfExists(ISpaceQuery<T> template, long timeout, int modifiers)
           
<T> T
GigaSpace.takeIfExists(ISpaceQuery<T> template, long timeout, int modifiers)
          Take (remove) any matching entry from the space, returning null if there currently is none.
<T> T[]
DefaultGigaSpace.takeMultiple(ISpaceQuery<T> template)
           
<T> T[]
GigaSpace.takeMultiple(ISpaceQuery<T> template)
          Takes (removes) all the entries matching the specified template from this space.
<T> T[]
DefaultGigaSpace.takeMultiple(ISpaceQuery<T> template, int maxEntries)
           
<T> T[]
GigaSpace.takeMultiple(ISpaceQuery<T> template, int maxEntries)
          Takes (removes) all the entries matching the specified template from this space.
<T> T[]
DefaultGigaSpace.takeMultiple(ISpaceQuery<T> template, int maxEntries, int modifiers)
           
<T> T[]
GigaSpace.takeMultiple(ISpaceQuery<T> template, int maxEntries, int modifiers)
          Takes (removes) all the entries matching the specified template from this space.
 


GigaSpaces XAP 8.0 API

Copyright © GigaSpaces.