Uses of Interface
org.apache.cassandra.db.IClock

Packages that use IClock
org.apache.cassandra.db   
org.apache.cassandra.utils   
 

Uses of IClock in org.apache.cassandra.db
 

Classes in org.apache.cassandra.db that implement IClock
 class TimestampClock
          A simple clock composed of a timestamp.
 

Fields in org.apache.cassandra.db declared as IClock
protected  IClock Column.clock
           
 

Fields in org.apache.cassandra.db with type parameters of type IClock
static ICompactSerializer2<IClock> TimestampClock.SERIALIZER
           
 

Methods in org.apache.cassandra.db that return IClock
 IClock Column.clock()
           
 IClock IColumn.clock()
           
 IClock SuperColumn.clock()
           
 IClock Column.getMarkedForDeleteAt()
           
 IClock ColumnFamily.getMarkedForDeleteAt()
           
 IClock DeletedColumn.getMarkedForDeleteAt()
           
 IClock ExpiringColumn.getMarkedForDeleteAt()
           
 IClock IColumn.getMarkedForDeleteAt()
           
 IClock IColumnContainer.getMarkedForDeleteAt()
           
 IClock SuperColumn.getMarkedForDeleteAt()
           
 IClock IClock.getSuperset(java.util.List<IClock> otherClocks)
           
 IClock TimestampClock.getSuperset(java.util.List<IClock> otherClocks)
           
 IClock ClockType.minClock()
           
 IClock Column.mostRecentLiveChangeAt()
           
 IClock IColumn.mostRecentLiveChangeAt()
           
 IClock SuperColumn.mostRecentLiveChangeAt()
           
 

Methods in org.apache.cassandra.db that return types with arguments of type IClock
 ICompactSerializer2<IClock> ClockType.serializer()
           
 

Methods in org.apache.cassandra.db with parameters of type IClock
 void RowMutation.add(QueryPath path, byte[] value, IClock clock)
           
 void RowMutation.add(QueryPath path, byte[] value, IClock clock, int timeToLive)
           
 void ColumnFamily.addColumn(QueryPath path, byte[] value, IClock clock)
           
 void ColumnFamily.addColumn(QueryPath path, byte[] value, IClock clock, int timeToLive)
           
 void ColumnFamily.addTombstone(QueryPath path, byte[] localDeletionTime, IClock clock)
           
 IClock.ClockRelationship IClock.compare(IClock other)
           
 IClock.ClockRelationship TimestampClock.compare(IClock other)
           
 void ColumnFamily.delete(int localtime, IClock clock)
          Deprecated. 
 void RowMutation.delete(QueryPath path, IClock clock)
           
 void ColumnFamily.deleteColumn(byte[] column, int localDeletionTime, IClock clock)
           
 void ColumnFamily.deleteColumn(QueryPath path, int localDeletionTime, IClock clock)
           
 void SuperColumn.markForDeleteAt(int localDeleteTime, IClock clock)
          Deprecated. 
 

Method parameters in org.apache.cassandra.db with type arguments of type IClock
 IClock IClock.getSuperset(java.util.List<IClock> otherClocks)
           
 IClock TimestampClock.getSuperset(java.util.List<IClock> otherClocks)
           
 

Constructors in org.apache.cassandra.db with parameters of type IClock
Column(byte[] name, byte[] value, IClock clock)
           
DeletedColumn(byte[] name, byte[] value, IClock clock)
           
DeletedColumn(byte[] name, int localDeletionTime, IClock clock)
           
ExpiringColumn(byte[] name, byte[] value, IClock clock, int timeToLive)
           
ExpiringColumn(byte[] name, byte[] value, IClock clock, int timeToLive, int localExpirationTime)
           
 

Uses of IClock in org.apache.cassandra.utils
 

Methods in org.apache.cassandra.utils with parameters of type IClock
static void FBUtilities.atomicSetMax(java.util.concurrent.atomic.AtomicReference<IClock> atomic, IClock newClock)
          Sets an atomic clock reference to the maximum of its current value and a new value.
 

Method parameters in org.apache.cassandra.utils with type arguments of type IClock
static void FBUtilities.atomicSetMax(java.util.concurrent.atomic.AtomicReference<IClock> atomic, IClock newClock)
          Sets an atomic clock reference to the maximum of its current value and a new value.
 



Copyright © 2010 The Apache Software Foundation