Package | Description |
---|---|
messif.algorithms.impl |
Implementation of basic search algorithms.
|
messif.buckets.split |
Bucket splitting support.
|
messif.netbucket |
Networked objects and buckets.
|
Modifier and Type | Method and Description |
---|---|
void |
SequentialScan.insert(InsertOperation operation)
Inserts a new object.
|
Constructor and Description |
---|
SequentialScan()
Creates a new instance of SequantialScan access structure with the default MemoryStorageBucket class.
|
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass)
Creates a new instance of SequantialScan access structure with specific bucket class.
|
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass,
AbstractObjectIterator<LocalAbstractObject> pivotIter,
int pivotCount,
boolean pivotDistsValidIfGiven)
Creates a new instance of SequantialScan access structure with specific bucket class and filtering pivots.
|
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass,
java.util.Map<java.lang.String,java.lang.Object> bucketClassParams)
Creates a new instance of SequantialScan access structure with specific bucket class.
|
SequentialScan(java.lang.Class<? extends LocalBucket> bucketClass,
java.util.Map<java.lang.String,java.lang.Object> bucketClassParams,
AbstractObjectIterator<LocalAbstractObject> pivotIter,
int pivotCount,
boolean pivotDistsValidIfGiven)
Creates a new instance of SequantialScan access structure with specific bucket class and filtering pivots.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends Bucket> |
SplitResult.getBuckets(BucketDispatcher bucketDisp)
Returns the list remote buckets for the newly created buckets (the list can contain nulls).
|
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends Bucket> |
BucketSplitReplyMessage.getBuckets(BucketDispatcher netbucketDisp)
Returns the list remote buckets for the newly created buckets (the list can contain nulls).
|
RemoteBucket |
BucketCreateReplyMessage.getRemoteBucket(NetworkBucketDispatcher netbucketDisp)
Returns the remote bucket encapsulation for the newly created bucket.
|