|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Mutator | |
---|---|
org.scale7.cassandra.pelops | |
org.scale7.cassandra.pelops.pool |
Uses of Mutator in org.scale7.cassandra.pelops |
---|
Methods in org.scale7.cassandra.pelops that return Mutator | |
---|---|
static Mutator |
Pelops.createMutator(String poolName)
Create a Mutator object using the current time as the operation time stamp. |
static Mutator |
Pelops.createMutator(String poolName,
long timestamp)
Create a Mutator object with an arbitrary time stamp. |
static Mutator |
Pelops.createMutator(String poolName,
long timestamp,
boolean deleteIfNull)
Create a Mutator object with an arbitrary time stamp. |
Mutator |
Mutator.deleteColumn(String colFamily,
Bytes rowKey,
Bytes colName)
Delete a column or super column. |
Mutator |
Mutator.deleteColumn(String colFamily,
String rowKey,
Bytes colName)
Delete a column or super column. |
Mutator |
Mutator.deleteColumn(String colFamily,
String rowKey,
String colName)
Delete a column or super column |
Mutator |
Mutator.deleteColumns(String colFamily,
Bytes rowKey,
Bytes... colNames)
Delete a list of columns or super columns. |
Mutator |
Mutator.deleteColumns(String colFamily,
Bytes rowKey,
List<Bytes> colNames)
Delete a list of columns or super columns. |
Mutator |
Mutator.deleteColumns(String colFamily,
String rowKey,
Bytes... colNames)
Delete a list of columns or super columns. |
Mutator |
Mutator.deleteColumns(String colFamily,
String rowKey,
List<Bytes> colNames)
Delete a list of columns or super columns. |
Mutator |
Mutator.deleteColumns(String colFamily,
String rowKey,
String... colNames)
Delete a list of columns or super columns. |
Mutator |
Mutator.deleteSubColumn(String colFamily,
Bytes rowKey,
Bytes colName,
Bytes subColName)
Delete a column or super column. |
Mutator |
Mutator.deleteSubColumn(String colFamily,
String rowKey,
Bytes colName,
Bytes subColName)
Delete a column or super column. |
Mutator |
Mutator.deleteSubColumn(String colFamily,
String rowKey,
Bytes colName,
String subColName)
Delete a column or super column. |
Mutator |
Mutator.deleteSubColumn(String colFamily,
String rowKey,
String colName,
Bytes subColName)
Delete a column or super column. |
Mutator |
Mutator.deleteSubColumn(String colFamily,
String rowKey,
String colName,
String subColName)
Delete a column or super column. |
Mutator |
Mutator.deleteSubColumns(String colFamily,
Bytes rowKey,
Bytes colName,
List<Bytes> subColNames)
Delete a list of sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
Bytes rowKey,
Bytes colName,
String... subColNames)
Delete a list of sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
String rowKey,
Bytes colName)
Delete all sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
String rowKey,
Bytes colName,
List<Bytes> subColNames)
Delete a list of sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
String rowKey,
Bytes colName,
String... subColNames)
Delete a list of sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
String rowKey,
String colName)
Delete all sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
String rowKey,
String colName,
List<Bytes> subColNames)
Delete a list of sub-columns |
Mutator |
Mutator.deleteSubColumns(String colFamily,
String rowKey,
String colName,
String... subColNames)
Delete a list of sub-columns |
Mutator |
Mutator.writeColumn(String colFamily,
Bytes rowKey,
org.apache.cassandra.thrift.Column column)
Write a column value. |
Mutator |
Mutator.writeColumn(String colFamily,
Bytes rowKey,
org.apache.cassandra.thrift.Column column,
boolean deleteIfNullValue)
Write a column value. |
Mutator |
Mutator.writeColumn(String colFamily,
String rowKey,
org.apache.cassandra.thrift.Column column)
Write a column value. |
Mutator |
Mutator.writeColumns(String colFamily,
Bytes rowKey,
List<org.apache.cassandra.thrift.Column> columns)
Write a list of columns to a key |
Mutator |
Mutator.writeColumns(String colFamily,
Bytes rowKey,
List<org.apache.cassandra.thrift.Column> columns,
boolean deleteIfNullValue)
Write a list of columns to a key. |
Mutator |
Mutator.writeColumns(String colFamily,
String rowKey,
List<org.apache.cassandra.thrift.Column> columns)
Write a list of columns to a key |
Mutator |
Mutator.writeSubColumn(String colFamily,
Bytes rowKey,
Bytes colName,
org.apache.cassandra.thrift.Column subColumn)
Write a single sub-column value to a super column. |
Mutator |
Mutator.writeSubColumn(String colFamily,
String rowKey,
Bytes colName,
org.apache.cassandra.thrift.Column subColumn)
Write a single sub-column value to a super column. |
Mutator |
Mutator.writeSubColumn(String colFamily,
String rowKey,
String colName,
org.apache.cassandra.thrift.Column subColumn)
Write a single sub-column value to a super column. |
Mutator |
Mutator.writeSubColumns(String colFamily,
Bytes rowKey,
Bytes colName,
List<org.apache.cassandra.thrift.Column> subColumns)
Write multiple sub-column values to a super column. |
Mutator |
Mutator.writeSubColumns(String colFamily,
Bytes rowKey,
Bytes colName,
List<org.apache.cassandra.thrift.Column> subColumns,
boolean deleteIfNullValue)
Write multiple sub-column values to a super column. |
Mutator |
Mutator.writeSubColumns(String colFamily,
String rowKey,
Bytes colName,
List<org.apache.cassandra.thrift.Column> subColumns)
Write multiple sub-column values to a super column. |
Mutator |
Mutator.writeSubColumns(String colFamily,
String rowKey,
String colName,
List<org.apache.cassandra.thrift.Column> subColumns)
Write multiple sub-column values to a super column. |
Uses of Mutator in org.scale7.cassandra.pelops.pool |
---|
Methods in org.scale7.cassandra.pelops.pool that return Mutator | |
---|---|
Mutator |
IThriftPool.createMutator()
Create a mutator object using the current time as the operation time stamp. |
Mutator |
ThriftPoolBase.createMutator()
Create a mutator object using the current time as the operation time stamp. |
Mutator |
IThriftPool.createMutator(long timestamp)
Create a mutator object with an arbitrary time stamp. |
Mutator |
ThriftPoolBase.createMutator(long timestamp)
Create a mutator object with an arbitrary time stamp. |
Mutator |
IThriftPool.createMutator(long timestamp,
boolean deleteIfNull)
Create a mutator object with an arbitrary time stamp. |
Mutator |
ThriftPoolBase.createMutator(long timestamp,
boolean deleteIfNull)
Create a mutator object with an arbitrary time stamp. |
Mutator |
IThriftPool.createMutator(long timestamp,
boolean deleteIfNull,
int ttl)
Create a mutator object with an arbitrary time stamp. |
Mutator |
ThriftPoolBase.createMutator(long timestamp,
boolean deleteIfNull,
int ttl)
|
Mutator |
IThriftPool.createMutator(long timestamp,
int ttl)
Create a mutator object with an arbitrary time stamp. |
Mutator |
ThriftPoolBase.createMutator(long timestamp,
int ttl)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |