Uses of Class
org.apache.cassandra.db.DecoratedKey

Packages that use DecoratedKey
org.apache.cassandra.db   
org.apache.cassandra.dht   
org.apache.cassandra.io   
org.apache.cassandra.service   
 

Uses of DecoratedKey in org.apache.cassandra.db
 

Fields in org.apache.cassandra.db with type parameters of type DecoratedKey
static java.util.Comparator<DecoratedKey> DecoratedKey.comparator
           
 

Methods in org.apache.cassandra.db that return types with arguments of type DecoratedKey
 java.util.Iterator<DecoratedKey> Memtable.getKeyIterator()
           
 java.util.List<DecoratedKey> BinaryMemtable.getSortedKeys()
           
 java.util.List<DecoratedKey> Memtable.getSortedKeys()
           
 java.util.Iterator<DecoratedKey> ColumnFamilyStore.memtableKeyIterator()
           
 

Methods in org.apache.cassandra.db with parameters of type DecoratedKey
 int DecoratedKey.compareTo(DecoratedKey other)
           
 RangeReply ColumnFamilyStore.getKeyRangeRaw(DecoratedKey startWith, DecoratedKey stopAt, int maxResults)
           
 RangeReply ColumnFamilyStore.getKeyRangeRaw(DecoratedKey startWith, DecoratedKey stopAt, int maxResults)
           
 RangeSliceReply ColumnFamilyStore.getRangeSlice(byte[] super_column, DecoratedKey startKey, DecoratedKey finishKey, int keyMax, SliceRange sliceRange, java.util.List<byte[]> columnNames)
           
 RangeSliceReply ColumnFamilyStore.getRangeSlice(byte[] super_column, DecoratedKey startKey, DecoratedKey finishKey, int keyMax, SliceRange sliceRange, java.util.List<byte[]> columnNames)
           
 

Method parameters in org.apache.cassandra.db with type arguments of type DecoratedKey
 SSTableReader BinaryMemtable.writeSortedContents(java.util.List<DecoratedKey> sortedKeys)
           
 SSTableReader Memtable.writeSortedContents(java.util.List<DecoratedKey> sortedKeys)
           
 

Uses of DecoratedKey in org.apache.cassandra.dht
 

Methods in org.apache.cassandra.dht that return DecoratedKey
 DecoratedKey<BytesToken> CollatingOrderPreservingPartitioner.convertFromDiskFormat(java.lang.String key)
           
 DecoratedKey<T> IPartitioner.convertFromDiskFormat(java.lang.String key)
          Convert the on disk representation to a DecoratedKey object
 DecoratedKey<StringToken> OrderPreservingPartitioner.convertFromDiskFormat(java.lang.String key)
           
 DecoratedKey<BigIntegerToken> RandomPartitioner.convertFromDiskFormat(java.lang.String key)
           
 DecoratedKey<BytesToken> CollatingOrderPreservingPartitioner.decorateKey(java.lang.String key)
           
 DecoratedKey<T> IPartitioner.decorateKey(java.lang.String key)
          Transform key to object representation of the on-disk format.
 DecoratedKey<StringToken> OrderPreservingPartitioner.decorateKey(java.lang.String key)
           
 DecoratedKey<BigIntegerToken> RandomPartitioner.decorateKey(java.lang.String key)
           
 

Methods in org.apache.cassandra.dht with parameters of type DecoratedKey
 java.lang.String RandomPartitioner.convertToDiskFormat(DecoratedKey<BigIntegerToken> key)
           
 java.lang.String CollatingOrderPreservingPartitioner.convertToDiskFormat(DecoratedKey<BytesToken> key)
           
 java.lang.String OrderPreservingPartitioner.convertToDiskFormat(DecoratedKey<StringToken> key)
           
 java.lang.String IPartitioner.convertToDiskFormat(DecoratedKey<T> key)
          Convert the DecoratedKey to the on disk format used for this partitioner.
 

Uses of DecoratedKey in org.apache.cassandra.io
 

Fields in org.apache.cassandra.io declared as DecoratedKey
 DecoratedKey CompactionIterator.CompactedRow.key
           
 

Methods in org.apache.cassandra.io that return DecoratedKey
 DecoratedKey IteratingRow.getKey()
           
 

Methods in org.apache.cassandra.io that return types with arguments of type DecoratedKey
static com.reardencommerce.kernel.collections.shared.evictable.ConcurrentLinkedHashMap<DecoratedKey,java.lang.Long> SSTableReader.createKeyCache(int size)
           
static java.util.List<DecoratedKey> SSTableReader.getIndexedDecoratedKeys()
          Get all indexed keys in any SSTable for our primary range.
static java.util.List<DecoratedKey> SSTableReader.getIndexedDecoratedKeysFor(com.google.common.base.Predicate<SSTable> cfpred, com.google.common.base.Predicate<DecoratedKey> dkpred)
          Get all indexed keys defined by the two predicates.
 

Methods in org.apache.cassandra.io with parameters of type DecoratedKey
 void SSTableWriter.append(DecoratedKey decoratedKey, byte[] value)
           
 void SSTableWriter.append(DecoratedKey decoratedKey, DataOutputBuffer buffer)
           
 long SSTableReader.getNearestPosition(DecoratedKey decoratedKey)
          like getPosition, but if key is not found will return the location of the first key _greater_ than the desired one, or -1 if no such key exists.
 long SSTableReader.getPosition(DecoratedKey decoratedKey)
          returns the position in the data file to find the given key, or -1 if the key is not present
 void SSTableScanner.seekTo(DecoratedKey seekKey)
           
 

Method parameters in org.apache.cassandra.io with type arguments of type DecoratedKey
static java.util.List<DecoratedKey> SSTableReader.getIndexedDecoratedKeysFor(com.google.common.base.Predicate<SSTable> cfpred, com.google.common.base.Predicate<DecoratedKey> dkpred)
          Get all indexed keys defined by the two predicates.
 

Constructors in org.apache.cassandra.io with parameters of type DecoratedKey
CompactionIterator.CompactedRow(DecoratedKey key, DataOutputBuffer buffer)
           
 

Uses of DecoratedKey in org.apache.cassandra.service
 

Fields in org.apache.cassandra.service with type parameters of type DecoratedKey
static com.google.common.base.Predicate<DecoratedKey> AntiEntropyService.Validator.DKPRED
           
 



Copyright © 2010 The Apache Software Foundation