Package com.mongodb.async
Interface SingleResultCallback<T>
- 
- Type Parameters:
 T- the result type
- All Known Implementing Classes:
 ErrorHandlingResultCallback
@Deprecated public interface SingleResultCallback<T>Deprecated.Prefer the Reactive Streams-based asynchronous driver (mongodb-driver-reactivestreams artifactId)An interface to describe the completion of an asynchronous operation.- Since:
 - 3.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonResult(T result, java.lang.Throwable t)Deprecated.Called when the operation completes. 
 - 
 
- 
- 
Method Detail
- 
onResult
void onResult(T result, java.lang.Throwable t)
Deprecated.Called when the operation completes.- Parameters:
 result- the result, which may be null. Always null if e is not null.t- the throwable, or null if the operation completed normally
 
 - 
 
 -