com.datastax.driver.core
Class ResultSetFuture

java.lang.Object
  extended by com.google.common.util.concurrent.AbstractFuture<ResultSet>
      extended by com.datastax.driver.core.ResultSetFuture
All Implemented Interfaces:
com.google.common.util.concurrent.ListenableFuture<ResultSet>, Future<ResultSet>

public class ResultSetFuture
extends com.google.common.util.concurrent.AbstractFuture<ResultSet>

A future on a ResultSet. Note that this class implements Guava's ListenableFuture and can so be used with Guava's future utilities.


Method Summary
 boolean cancel(boolean mayInterruptIfRunning)
          Attempts to cancel the execution of the request corresponding to this future.
 ResultSet getUninterruptibly()
          Waits for the query to return and return its result.
 ResultSet getUninterruptibly(long timeout, TimeUnit unit)
          Waits for the provided time for the query to return and return its result if available.
 
Methods inherited from class com.google.common.util.concurrent.AbstractFuture
addListener, get, get, interruptTask, isCancelled, isDone, set, setException, wasInterrupted
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getUninterruptibly

public ResultSet getUninterruptibly()
Waits for the query to return and return its result. This method is usually more convenient than AbstractFuture.get(long, java.util.concurrent.TimeUnit) because it: As such, it is the preferred way to get the future result.

Throws:
NoHostAvailableException - if no host in the cluster can be contacted successfully to execute this query.
QueryExecutionException - if the query triggered an execution exception, that is an exception thrown by Cassandra when it cannot execute the query with the requested consistency level successfully.
QueryValidationException - if the query is invalid (syntax error, unauthorized or any other validation problem).

getUninterruptibly

public ResultSet getUninterruptibly(long timeout,
                                    TimeUnit unit)
                             throws TimeoutException
Waits for the provided time for the query to return and return its result if available. This method is usually more convenient than AbstractFuture.get(long, java.util.concurrent.TimeUnit) because it: As such, it is the preferred way to get the future result.

Throws:
NoHostAvailableException - if no host in the cluster can be contacted successfully to execute this query.
QueryExecutionException - if the query triggered an execution exception, that is an exception thrown by Cassandra when it cannot execute the query with the requested consistency level successfully.
QueryValidationException - if the query if invalid (syntax error, unauthorized or any other validation problem).
TimeoutException - if the wait timed out (Note that this is different from a Cassandra timeout, which is a QueryExecutionException).

cancel

public boolean cancel(boolean mayInterruptIfRunning)
Attempts to cancel the execution of the request corresponding to this future. This attempt will fail if the request has already returned.

Please note that this only cancle the request driver side, but nothing is done to interrupt the execution of the request Cassandra side (and that even if mayInterruptIfRunning is true) since Cassandra does not support such interruption.

This method can be used to ensure no more work is performed driver side (which, while it doesn't include stopping a request already submitted to a Cassandra node, may include not retrying another Cassandra host on failure/timeout) if the ResultSet is not going to be retried. Typically, the code to wait for a request result for a maximum of 1 second could look like:

   ResultSetFuture future = session.executeAsync(...some query...);
   try {
       ResultSet result = future.get(1, TimeUnit.SECONDS);
       ... process result ...
   } catch (TimeoutException e) {
       future.cancel(true); // Ensure any ressource used by this query driver
                            // side is released immediately
       ... handle timeout ...
   }
 

Specified by:
cancel in interface Future<ResultSet>
Overrides:
cancel in class com.google.common.util.concurrent.AbstractFuture<ResultSet>
Parameters:
mayInterruptIfRunning - the value of this parameter is currently ignored.
Returns:
false if the future could not be cancelled (it has already completed normally); true otherwise.


Copyright © 2013. All rights reserved.