Uses of Interface
javax.ws.rs.client.InvocationCallback

Packages that use InvocationCallback
javax.ws.rs.client The JAX-RS client API 
 

Uses of InvocationCallback in javax.ws.rs.client
 

Methods in javax.ws.rs.client with parameters of type InvocationCallback
<T> java.util.concurrent.Future<T>
AsyncInvoker.delete(InvocationCallback<T> callback)
          Invoke HTTP DELETE method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.get(InvocationCallback<T> callback)
          Invoke HTTP GET method for the current request asynchronously.
 java.util.concurrent.Future<Response> AsyncInvoker.head(InvocationCallback<Response> callback)
          Invoke HTTP HEAD method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.method(java.lang.String name, Entity<?> entity, InvocationCallback<T> callback)
          Invoke an arbitrary method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.method(java.lang.String name, InvocationCallback<T> callback)
          Invoke an arbitrary method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.options(InvocationCallback<T> callback)
          Invoke HTTP OPTIONS method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.post(Entity<?> entity, InvocationCallback<T> callback)
          Invoke HTTP POST method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
AsyncInvoker.put(Entity<?> entity, InvocationCallback<T> callback)
          Invoke HTTP PUT method for the current request asynchronously.
<T> java.util.concurrent.Future<T>
Invocation.submit(InvocationCallback<T> callback)
          Submit the request for an asynchronous invocation and register an InvocationCallback to process the future result of the invocation.
<T> java.util.concurrent.Future<T>
AsyncInvoker.trace(InvocationCallback<T> callback)
          Invoke HTTP TRACE method for the current request asynchronously.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.