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

Packages that use Table
org.apache.cassandra.config   
org.apache.cassandra.db   
org.apache.cassandra.service   
org.apache.cassandra.streaming   
 

Uses of Table in org.apache.cassandra.config
 

Methods in org.apache.cassandra.config that return Table
 Table Schema.getTableInstance(java.lang.String tableName)
          Get table instance by name
 Table Schema.removeTableInstance(java.lang.String tableName)
          Remove table from schema
 

Methods in org.apache.cassandra.config with parameters of type Table
 void Schema.storeTableInstance(Table table)
          Store given Table instance to the schema
 

Uses of Table in org.apache.cassandra.db
 

Fields in org.apache.cassandra.db declared as Table
 Table ColumnFamilyStore.table
           
 

Fields in org.apache.cassandra.db with type parameters of type Table
static com.google.common.base.Function<java.lang.String,Table> Table.tableTransformer
           
 

Methods in org.apache.cassandra.db that return Table
static Table Table.clear(java.lang.String table)
           
static Table Table.clear(java.lang.String table, Schema schema)
           
static Table Table.open(java.lang.String table)
           
static Table Table.openWithoutSSTables(java.lang.String table)
           
 

Methods in org.apache.cassandra.db that return types with arguments of type Table
static java.lang.Iterable<Table> Table.all()
           
static java.lang.Iterable<Table> Table.nonSystem()
           
static java.lang.Iterable<Table> Table.system()
           
 

Methods in org.apache.cassandra.db with parameters of type Table
 void ConsistencyLevel.assureSufficientLiveNodes(Table table, java.lang.Iterable<java.net.InetAddress> liveEndpoints)
           
 int ConsistencyLevel.blockFor(Table table)
           
static ColumnFamilyStore ColumnFamilyStore.createColumnFamilyStore(Table table, java.lang.String columnFamily, boolean loadSSTables)
           
static ColumnFamilyStore ColumnFamilyStore.createColumnFamilyStore(Table table, java.lang.String columnFamily, IPartitioner partitioner, CFMetaData metadata)
           
 java.util.List<java.net.InetAddress> ConsistencyLevel.filterForQuery(Table table, java.util.List<java.net.InetAddress> liveEndpoints)
           
 java.util.List<java.net.InetAddress> ConsistencyLevel.filterForQuery(Table table, java.util.List<java.net.InetAddress> liveEndpoints, ReadRepairDecision readRepair)
           
abstract  Row ReadCommand.getRow(Table table)
           
 Row SliceByNamesReadCommand.getRow(Table table)
           
 Row SliceFromReadCommand.getRow(Table table)
           
 boolean ConsistencyLevel.isSufficientLiveNodes(Table table, java.lang.Iterable<java.net.InetAddress> liveEndpoints)
           
 

Uses of Table in org.apache.cassandra.service
 

Fields in org.apache.cassandra.service declared as Table
protected  Table AbstractWriteResponseHandler.table
           
 

Methods in org.apache.cassandra.service with parameters of type Table
 java.util.List<java.net.InetAddress> StorageService.getLiveNaturalEndpoints(Table table, java.nio.ByteBuffer key)
          This method attempts to return N endpoints that are responsible for storing the specified key i.e for replication.
 java.util.List<java.net.InetAddress> StorageService.getLiveNaturalEndpoints(Table table, RingPosition pos)
           
 

Constructors in org.apache.cassandra.service with parameters of type Table
AbstractWriteResponseHandler(Table table, java.util.Collection<java.net.InetAddress> naturalEndpoints, java.util.Collection<java.net.InetAddress> pendingEndpoints, ConsistencyLevel consistencyLevel, java.lang.Runnable callback, WriteType writeType)
           
DatacenterSyncWriteResponseHandler(java.util.Collection<java.net.InetAddress> naturalEndpoints, java.util.Collection<java.net.InetAddress> pendingEndpoints, ConsistencyLevel consistencyLevel, Table table, java.lang.Runnable callback, WriteType writeType)
           
DatacenterWriteResponseHandler(java.util.Collection<java.net.InetAddress> naturalEndpoints, java.util.Collection<java.net.InetAddress> pendingEndpoints, ConsistencyLevel consistencyLevel, Table table, java.lang.Runnable callback, WriteType writeType)
           
WriteResponseHandler(java.util.Collection<java.net.InetAddress> writeEndpoints, java.util.Collection<java.net.InetAddress> pendingEndpoints, ConsistencyLevel consistencyLevel, Table table, java.lang.Runnable callback, WriteType writeType)
           
 

Uses of Table in org.apache.cassandra.streaming
 

Methods in org.apache.cassandra.streaming with parameters of type Table
static void StreamOut.transferRanges(java.net.InetAddress target, Table table, java.util.Collection<Range<Token>> ranges, IStreamCallback callback, OperationType type)
          Stream the given ranges to the target endpoint from each CF in the given keyspace.
static void StreamOut.transferRanges(java.net.InetAddress target, Table table, java.lang.Iterable<ColumnFamilyStore> cfses, java.util.Collection<Range<Token>> ranges, IStreamCallback callback, OperationType type)
          Stream the given ranges to the target endpoint for provided CFs in the given keyspace.
 



Copyright © 2013 The Apache Software Foundation