Package | Description |
---|---|
com.hazelcast.client.impl.protocol.task.map |
Client protocol tasks implementations for map
|
com.hazelcast.map.impl.client |
Contains client requests for the
IMap |
com.hazelcast.map.impl.query | |
com.hazelcast.query |
Contains interfaces/classes related to Hazelcast query and indexing support.
|
com.hazelcast.replicatedmap.impl.record |
This package contains the implementation of the backing data storage for the replicated map implementation
|
com.hazelcast.util |
This package contains classes to support the inner workings of Hazelcast
as well as some backports of newer Java features / data structures to
support older Java versions in a clean and nice way.
|
Modifier and Type | Method and Description |
---|---|
protected IterationType |
MapEntriesWithPagingPredicateMessageTask.getIterationType() |
protected IterationType |
MapKeySetMessageTask.getIterationType() |
protected IterationType |
MapEntriesWithPredicateMessageTask.getIterationType() |
protected IterationType |
MapValuesMessageTask.getIterationType() |
protected IterationType |
MapKeySetWithPagingPredicateMessageTask.getIterationType() |
protected abstract IterationType |
AbstractMapQueryMessageTask.getIterationType() |
protected IterationType |
MapKeySetWithPredicateMessageTask.getIterationType() |
protected IterationType |
MapEntrySetMessageTask.getIterationType() |
protected IterationType |
MapValuesWithPagingPredicateMessageTask.getIterationType() |
protected IterationType |
MapValuesWithPredicateMessageTask.getIterationType() |
Constructor and Description |
---|
MapQueryRequest(String name,
Predicate predicate,
IterationType iterationType) |
MapSQLQueryRequest(String name,
String sql,
IterationType iterationType) |
Modifier and Type | Method and Description |
---|---|
IterationType |
QueryResultCollection.getIterationType() |
Modifier and Type | Method and Description |
---|---|
QueryResult |
MapQueryEngineImpl.invokeQueryAllPartitions(String mapName,
Predicate predicate,
IterationType iterationType) |
QueryResult |
MapQueryEngine.invokeQueryAllPartitions(String mapName,
Predicate predicate,
IterationType iterationType)
Queries all partitions.
|
QueryResult |
MapQueryEngineImpl.invokeQueryLocalPartitions(String mapName,
Predicate predicate,
IterationType iterationType) |
QueryResult |
MapQueryEngine.invokeQueryLocalPartitions(String mapName,
Predicate predicate,
IterationType iterationType)
Query all local partitions.
|
protected QueryResult |
MapQueryEngineImpl.newQueryResult(int numberOfPartitions,
IterationType iterationType)
Creates a
QueryResult with configured result limit (according to the number of partitions) if feature is enabled. |
Set |
MapQueryEngineImpl.queryAllPartitionsWithPagingPredicate(String mapName,
PagingPredicate predicate,
IterationType iterationType) |
Set |
MapQueryEngine.queryAllPartitionsWithPagingPredicate(String mapName,
PagingPredicate pagingPredicate,
IterationType iterationType)
Queries all partitions with a paging predicate.
|
QueryResult |
MapQueryEngineImpl.queryLocalPartition(String mapName,
Predicate predicate,
int partitionId,
IterationType iterationType) |
QueryResult |
MapQueryEngine.queryLocalPartition(String mapName,
Predicate predicate,
int partitionId,
IterationType iterationType)
Executes a query a specific local partition.
|
QueryResult |
MapQueryEngineImpl.queryLocalPartitions(String mapName,
Predicate predicate,
IterationType iterationType) |
QueryResult |
MapQueryEngine.queryLocalPartitions(String name,
Predicate predicate,
IterationType iterationType)
Executes a query on all the local partitions.
|
Set |
MapQueryEngineImpl.queryLocalPartitionsWithPagingPredicate(String mapName,
PagingPredicate predicate,
IterationType iterationType) |
Set |
MapQueryEngine.queryLocalPartitionsWithPagingPredicate(String mapName,
PagingPredicate pagingPredicate,
IterationType iterationType)
Query all local partitions with a paging predicate.
|
protected Future<QueryResult> |
MapQueryEngineImpl.queryOnLocalMember(String mapName,
Predicate predicate,
IterationType iterationType) |
protected List<Future<QueryResult>> |
MapQueryEngineImpl.queryOnMembers(String mapName,
Predicate predicate,
IterationType iterationType) |
protected QueryResult |
MapQueryEngineImpl.queryParallel(String name,
Predicate predicate,
Collection<Integer> partitions,
IterationType iterationType) |
protected QueryResult |
MapQueryEngineImpl.queryParallelForPaging(String name,
PagingPredicate predicate,
Collection<Integer> partitions,
IterationType iterationType) |
protected List<Future<QueryResult>> |
MapQueryEngineImpl.queryPartitions(String mapName,
Predicate predicate,
Collection<Integer> partitionIds,
IterationType iterationType) |
protected QueryResult |
MapQueryEngineImpl.querySequential(String name,
Predicate predicate,
Collection<Integer> partitions,
IterationType iterationType) |
protected QueryResult |
MapQueryEngineImpl.queryUsingFullTableScan(String name,
Predicate predicate,
Collection<Integer> partitions,
IterationType iterationType) |
protected QueryResult |
MapQueryEngineImpl.tryQueryUsingIndexes(Predicate predicate,
Collection<Integer> partitions,
MapContainer mapContainer,
IterationType iterationType) |
Constructor and Description |
---|
QueryOperation(String mapName,
Predicate predicate,
IterationType iterationType) |
QueryPartitionOperation(String mapName,
Predicate predicate,
IterationType iterationType) |
QueryResult(IterationType iterationType,
long resultLimit) |
QueryResultCollection(SerializationService serializationService,
IterationType iterationType,
boolean binary,
boolean unique) |
QueryResultCollection(SerializationService serializationService,
IterationType iterationType,
boolean binary,
boolean unique,
QueryResult queryResult) |
SortedQueryResultSet(List<Map.Entry> entries,
IterationType iterationType) |
Modifier and Type | Method and Description |
---|---|
IterationType |
PagingPredicate.getIterationType() |
Modifier and Type | Method and Description |
---|---|
void |
PagingPredicate.setIterationType(IterationType iterationType) |
Constructor and Description |
---|
ResultSet(List<Map.Entry<K,V>> entries,
IterationType iterationType) |
Modifier and Type | Method and Description |
---|---|
static IterationType |
IterationType.getById(byte id)
Returns the IterationType for the given id.
|
static IterationType |
IterationType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IterationType[] |
IterationType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static int |
SortingUtil.compare(Comparator<Map.Entry> comparator,
IterationType iterationType,
Map.Entry entry1,
Map.Entry entry2) |
static SortedQueryResultSet |
SortingUtil.getSortedQueryResultSet(List<Map.Entry> list,
PagingPredicate pagingPredicate,
IterationType iterationType) |
static boolean |
SortingUtil.isSuitableForCompare(Comparator<Map.Entry> comparator,
IterationType iterationType,
Map.Entry entry) |
static Comparator<Map.Entry> |
SortingUtil.newComparator(Comparator<Map.Entry> comparator,
IterationType iterationType) |
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.