Package com.mongodb.connection
Interface AsyncCompletionHandler<T>
-
- Type Parameters:
T
- the type of a successful completion
@Deprecated(since="2021-05-27") public interface AsyncCompletionHandler<T>
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.Completion handler for asynchronous I/O.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
completed(T t)
Deprecated.Invoked when an operation has completed.void
failed(java.lang.Throwable t)
Deprecated.Invoked when an operation fails.
-
-
-
Method Detail
-
completed
void completed(T t)
Deprecated.Invoked when an operation has completed.- Parameters:
t
- the result of the completed operation
-
failed
void failed(java.lang.Throwable t)
Deprecated.Invoked when an operation fails.- Parameters:
t
- the exception that describes the failure
-
-