Home | History | Annotate | Download | only in async

Lines Matching refs:Request

31  * @param <Request> Class of the request data.
36 public abstract class AsyncMessageInvocation<Request, Response> implements Handler.Callback {
40 * @param request The request to be sent with the invocation.
45 Request request, AsyncResultCallback<Response> resultCallback, Handler handler) {
47 sendRequestMessage(request, h.obtainMessage(0, resultCallback));
66 * the given {@code request} to the parameters of the asynchronous method.
68 protected abstract void sendRequestMessage(Request request, Message msg);