Uses of Interface
com.netflix.astyanax.Execution

Packages that use Execution
com.netflix.astyanax   
com.netflix.astyanax.connectionpool.impl   
com.netflix.astyanax.query   
com.netflix.astyanax.thrift   
 

Uses of Execution in com.netflix.astyanax
 

Subinterfaces of Execution in com.netflix.astyanax
 interface MutationBatch
          Batch mutator which operates at the row level assuming the hierarchy: RowKey -> ColumnFamily -> Mutation.
 interface RowCopier<K,C>
           
 

Methods in com.netflix.astyanax that return Execution
 Execution<Void> ColumnMutation.deleteColumn()
           
 Execution<Void> ColumnMutation.deleteCounterColumn()
           
 Execution<Void> ColumnMutation.incrementCounterColumn(long amount)
           
 Execution<Void> ColumnMutation.putEmptyColumn(Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(boolean value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(byte[] value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(ByteBuffer value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(Date value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(double value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(int value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(long value, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(String value, Integer ttl)
           
<T> Execution<Void>
ColumnMutation.putValue(T value, Serializer<T> serializer, Integer ttl)
           
 Execution<Void> ColumnMutation.putValue(UUID value, Integer ttl)
           
 

Uses of Execution in com.netflix.astyanax.connectionpool.impl
 

Classes in com.netflix.astyanax.connectionpool.impl that implement Execution
 class AbstractExecutionImpl<R>
           
 

Methods in com.netflix.astyanax.connectionpool.impl with parameters of type Execution
static
<R> OperationResult<R>
ExecutionHelper.blockingExecute(Execution<R> execution)
           
 

Uses of Execution in com.netflix.astyanax.query
 

Subinterfaces of Execution in com.netflix.astyanax.query
 interface AllRowsQuery<K,C>
          Specialized query to iterate the contents of a column family.
 interface ColumnCountQuery
           
 interface ColumnQuery<C>
          Interface to execute a column query on a single row.
 interface CqlQuery<K,C>
          Interface for executing a CQL query.
 interface IndexQuery<K,C>
           
 interface RowQuery<K,C>
          Interface to narrow down the path and column slices within a query after the keys were seleted using the ColumnFamilyQuery.
 interface RowSliceQuery<K,C>
          Interface to narrow down the path and column slices within a query after the keys were seleted using the ColumnFamilyQuery.
 

Uses of Execution in com.netflix.astyanax.thrift
 

Classes in com.netflix.astyanax.thrift that implement Execution
 class AbstractIndexQueryImpl<K,C>
           
 class AbstractRowQueryImpl<K,C>
           
 class AbstractRowSliceQueryImpl<K,C>
           
 class AbstractThriftAllRowsQueryImpl<K,C>
           
 class AbstractThriftMutationBatchImpl
          Basic implementation of a mutation batch using the thrift data structures.
 

Methods in com.netflix.astyanax.thrift that return Execution
protected abstract  Execution<Void> AbstractThriftColumnMutationImpl.insertValue(ByteBuffer value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putEmptyColumn(Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(boolean value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(byte[] value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(ByteBuffer value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(Date value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(double value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(int value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(long value, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(String value, Integer ttl)
           
<T> Execution<Void>
AbstractThriftColumnMutationImpl.putValue(T value, Serializer<T> serializer, Integer ttl)
           
 Execution<Void> AbstractThriftColumnMutationImpl.putValue(UUID value, Integer ttl)
           
 



Copyright © 2012. All Rights Reserved.