private PartitionCallable(int partitionId) {
this.partition = partitionId;
}
public Collection<QueryableEntry> call() throws Exception {
MapContextQuerySupport mapContextQuerySupport = mapService.getMapServiceContext()
.getMapContextQuerySupport();
return mapContextQuerySupport.queryOnPartition(name, predicate, partition);
}