You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What are your thoughts on potentially adding to the CassandraSession interface more async calls that allow the user to pass in their own executor service. This way you could monitor things like outstanding futures awaiting response.
ie
along with
void executeAsync(Statement statement, final FutureCallback callback);
also have this
void executeAsync(Statement statement, final FutureCallback callback, Executor executor);
along with
void executeAsync(String query, final FutureCallback callback);
also have this
void executeAsync(String query, final FutureCallback callback, Executor executor);
Do you know if there are any plans for Datastax to have a real async impl using NIO vs the current futures approach?
The text was updated successfully, but these errors were encountered:
What are your thoughts on potentially adding to the CassandraSession interface more async calls that allow the user to pass in their own executor service. This way you could monitor things like outstanding futures awaiting response.
ie
along with
void executeAsync(Statement statement, final FutureCallback callback);
also have this
void executeAsync(Statement statement, final FutureCallback callback, Executor executor);
along with
void executeAsync(String query, final FutureCallback callback);
also have this
void executeAsync(String query, final FutureCallback callback, Executor executor);
Do you know if there are any plans for Datastax to have a real async impl using NIO vs the current futures approach?
The text was updated successfully, but these errors were encountered: