當前位置: 首頁>>代碼示例>>Java>>正文


Java KeyIterator類代碼示例

本文整理匯總了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";
        }
    });
}
 
開發者ID:graben1437,項目名稱:titan1withtp3.1,代碼行數:19,代碼來源:BackendTransaction.java

示例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;
}
 
開發者ID:graben1437,項目名稱:titan0.5.4-hbase1.1.1-custom,代碼行數:9,代碼來源:FulgoraExecutor.java

示例3: MetricInstrumentedIterator

import com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator; //導入依賴的package包/類
private MetricInstrumentedIterator(KeyIterator i, String p) {
    this.iterator = i;
    this.p = p;
}
 
開發者ID:graben1437,項目名稱:titan1withtp3.1,代碼行數:5,代碼來源:MetricInstrumentedIterator.java

示例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,"."));
}
 
開發者ID:graben1437,項目名稱:titan1withtp3.1,代碼行數:24,代碼來源:MetricInstrumentedIterator.java


注:本文中的com.thinkaurelius.titan.diskstorage.keycolumnvalue.KeyIterator類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。