public interface

Execution

com.netflix.astyanax.Execution<R>
Known Indirect Subclasses

Class Overview

Interface for an operation that can be executed on the cluster.

Summary

Public Methods
abstract OperationResult<R> execute()
Block while executing the operations@return
abstract Future<OperationResult<R>> executeAsync()
Return a future to the operation.

Public Methods

public abstract OperationResult<R> execute ()

Block while executing the operations@return

public abstract Future<OperationResult<R>> executeAsync ()

Return a future to the operation. The operation will most likely be executed in a separate thread where both the connection pool logic as well as the actual operation will be executed.@return