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.utils   
 

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(DecoratedKey startWith)
           
 java.util.Iterator<DecoratedKey> ColumnFamilyStore.memtableKeyIterator(DecoratedKey startWith)
           
 

Methods in org.apache.cassandra.db with parameters of type DecoratedKey
 int DecoratedKey.compareTo(DecoratedKey other)
           
 java.util.Iterator<DecoratedKey> Memtable.getKeyIterator(DecoratedKey startWith)
           
 boolean ColumnFamilyStore.isKeyInRemainingSSTables(DecoratedKey key, java.util.Set<SSTable> sstablesToIgnore)
          Uses bloom filters to check if key may be present in any sstable in this ColumnFamilyStore, minus a set of provided ones.
 java.util.Iterator<DecoratedKey> ColumnFamilyStore.memtableKeyIterator(DecoratedKey startWith)
           
 

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
           
 DecoratedKey IndexSummary.KeyPosition.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
 JMXInstrumentedCache<Pair<java.lang.String,DecoratedKey>,SSTable.PositionSize> SSTableTracker.getKeyCache()
           
 

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)
           
 FileDataInput SSTableReader.getFileDataInput(DecoratedKey decoratedKey, int bufferSize)
           
 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.
 SSTable.PositionSize 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 IndexSummary.maybeAddEntry(DecoratedKey decoratedKey, long dataPosition, long rowSize, long indexPosition, long nextIndexPosition)
           
 void SSTableScanner.seekTo(DecoratedKey seekKey)
           
 

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

Uses of DecoratedKey in org.apache.cassandra.utils
 

Method parameters in org.apache.cassandra.utils with type arguments of type DecoratedKey
static void FBUtilities.sortSampledKeys(java.util.List<DecoratedKey> keys, Range range)
           
 



Copyright © 2010 The Apache Software Foundation