Package io.undertow.client
Interface ClientCallback<T>
-
public interface ClientCallback<T>- Author:
- Emanuel Muckenhuber
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcompleted(T result)Invoked when an operation completed.voidfailed(java.io.IOException e)Invoked when the operation failed.
-
-
-
Method Detail
-
completed
void completed(T result)
Invoked when an operation completed.- Parameters:
result- the operation result
-
failed
void failed(java.io.IOException e)
Invoked when the operation failed.- Parameters:
e- the exception
-
-