本文整理匯總了Java中com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator類的典型用法代碼示例。如果您正苦於以下問題:Java KeyIterator類的具體用法?Java KeyIterator怎麽用?Java KeyIterator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
KeyIterator類屬於com.thinkaurelius.titan.diskstorage.keycolumnvalue包,在下文中一共展示了KeyIterator類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: edgeStoreKeys
import com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator; //導入依賴的package包/類
public KeyIterator edgeStoreKeys(final SliceQuery sliceQuery) {
if (!storeFeatures.hasScan())
throw new UnsupportedOperationException("The configured storage backend does not support global graph operations - use Faunus instead");
return executeRead(new Callable<KeyIterator>() {
@Override
public KeyIterator call() throws Exception {
return (storeFeatures.isKeyOrdered())
? edgeStore.getKeys(new KeyRangeQuery(EDGESTORE_MIN_KEY, EDGESTORE_MAX_KEY, sliceQuery), storeTx)
: edgeStore.getKeys(sliceQuery, storeTx);
}
@Override
public String toString() {
return "EdgeStoreKeys";
}
});
}
示例2: DataPuller
import com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator; //導入依賴的package包/類
private DataPuller(IDManager idManager, String queryName,
BlockingQueue<QueryResult> queue, KeyIterator keyIter) {
this.queryName = queryName;
this.queue = queue;
this.keyIter = keyIter;
this.idManager = idManager;
this.finished = false;
}
示例3: MetricInstrumentedIterator
import com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator; //導入依賴的package包/類
private MetricInstrumentedIterator(KeyIterator i, String p) {
this.iterator = i;
this.p = p;
}
示例4: of
import com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator; //導入依賴的package包/類
/**
* If the iterator argument is non-null, then return a new
* {@code MetricInstrumentedIterator} wrapping it. Metrics for method calls
* on the wrapped instance will be prefixed with the string {@code prefix}
* which must be non-null. If the iterator argument is null, then return
* null.
*
* @param keyIterator
* the iterator to wrap with Metrics measurements
* @param prefix
* the Metrics name prefix string
*
* @return a wrapper around {@code keyIterator} or null if
* {@code keyIterator} is null
*/
public static MetricInstrumentedIterator of(KeyIterator keyIterator, String... prefix) {
if (keyIterator == null) {
return null;
}
Preconditions.checkNotNull(prefix);
return new MetricInstrumentedIterator(keyIterator, StringUtils.join(prefix,"."));
}