Errai 3.0.1-SNAPSHOT

Uses of Interface
org.jboss.errai.common.client.api.RemoteCallback

Packages that use RemoteCallback
org.jboss.errai.bus.client.api.base   
org.jboss.errai.bus.client.api.builder   
org.jboss.errai.bus.client.framework   
org.jboss.errai.common.client.api Parent package for public API shared by all modules of the Errai framework. 
org.jboss.errai.common.client.api.interceptor   
org.jboss.errai.common.client.framework   
org.jboss.errai.enterprise.client.jaxrs   
org.jboss.errai.enterprise.client.jaxrs.api   
org.jboss.errai.jpa.sync.client.local   
 

Uses of RemoteCallback in org.jboss.errai.bus.client.api.base
 

Methods in org.jboss.errai.bus.client.api.base with parameters of type RemoteCallback
static
<R,T> T
MessageBuilder.createCall(RemoteCallback<R> callback, BusErrorCallback errorCallback, Class<T> service)
          Creates an RPC call with error handling.
static
<R,T> T
MessageBuilder.createCall(RemoteCallback<R> callback, Class<T> service)
          Creates an RPC call, with no error handling.
 

Uses of RemoteCallback in org.jboss.errai.bus.client.api.builder
 

Methods in org.jboss.errai.bus.client.api.builder with parameters of type RemoteCallback
<T,R> T
DefaultRemoteCallBuilder.call(RemoteCallback<R> callback, BusErrorCallback errorCallback, Class<T> remoteService)
           
<T,R> T
DefaultRemoteCallBuilder.call(RemoteCallback<R> callback, Class<T> remoteService)
           
<T> RemoteCallErrorDef
RemoteCallResponseDef.respondTo(Class<T> returnType, RemoteCallback<T> callback)
          Sets the callback response function, which is called after an endpoint is reached
 

Uses of RemoteCallback in org.jboss.errai.bus.client.framework
 

Fields in org.jboss.errai.bus.client.framework declared as RemoteCallback
protected  RemoteCallback AbstractRpcProxy.remoteCallback
           
 

Methods in org.jboss.errai.bus.client.framework with parameters of type RemoteCallback
 void AbstractRpcProxy.setRemoteCallback(RemoteCallback remoteCallback)
           
 

Uses of RemoteCallback in org.jboss.errai.common.client.api
 

Classes in org.jboss.errai.common.client.api that implement RemoteCallback
 class VoidCallback
           
 

Methods in org.jboss.errai.common.client.api with parameters of type RemoteCallback
 T Caller.call(RemoteCallback<?> callback)
          Returns an instance of the proxy that can invoke service methods on the service described by T.
<T> T
BatchCaller.call(RemoteCallback<?> callback, Class<T> remoteService)
          Returns an instance of the proxy that can schedule invocations on service methods on the service described by T.
 T Caller.call(RemoteCallback<?> callback, ErrorCallback<?> errorCallback)
          Returns an instance of the proxy that can invoke service methods on the service described by T.
<T> T
BatchCaller.call(RemoteCallback<?> callback, ErrorCallback<?> errorCallback, Class<T> remoteService)
          Returns an instance of the proxy that can schedule invocations on service methods on the service described by T.
 void BatchCaller.sendBatch(RemoteCallback<Void> callback)
          Invokes the accumulated remote requests using a single server round trip.
 void BatchCaller.sendBatch(RemoteCallback<Void> callback, ErrorCallback<?> errorCallback)
          Invokes the accumulated remote requests using a single server round trip.
 

Uses of RemoteCallback in org.jboss.errai.common.client.api.interceptor
 

Methods in org.jboss.errai.common.client.api.interceptor with parameters of type RemoteCallback
abstract  void RemoteCallContext.proceed(RemoteCallback<?> callback)
          Proceeds to the next interceptor in the chain or with the execution of the intercepted method if all interceptors have been executed.
abstract  void RemoteCallContext.proceed(RemoteCallback<?> callback, ErrorCallback<?> errorCallback)
          Proceeds to the next interceptor in the chain or with the execution of the intercepted method if all interceptors have been executed.
 

Uses of RemoteCallback in org.jboss.errai.common.client.framework
 

Methods in org.jboss.errai.common.client.framework with parameters of type RemoteCallback
 void RpcStub.setRemoteCallback(RemoteCallback callback)
           
 

Uses of RemoteCallback in org.jboss.errai.enterprise.client.jaxrs
 

Methods in org.jboss.errai.enterprise.client.jaxrs that return RemoteCallback
abstract  RemoteCallback<?> AbstractJaxrsProxy.getRemoteCallback()
          Returns the remote callback used by this proxy.
 

Uses of RemoteCallback in org.jboss.errai.enterprise.client.jaxrs.api
 

Subinterfaces of RemoteCallback in org.jboss.errai.enterprise.client.jaxrs.api
 interface ResponseCallback
          A RemoteCallback that can be used to retrieve the underlying HTTP response.
 

Methods in org.jboss.errai.enterprise.client.jaxrs.api with parameters of type RemoteCallback
static
<T,R> T
RestClient.create(Class<T> remoteService, RemoteCallback<R> callback, Integer... successCodes)
          Creates a client/proxy for the provided JAX-RS resource interface.
static
<T,R> T
RestClient.create(Class<T> remoteService, RemoteCallback<R> callback, RestErrorCallback errorCallback, Integer... successCodes)
          Creates a client/proxy for the provided JAX-RS resource interface.
static
<T,R> T
RestClient.create(Class<T> remoteService, String baseUrl, RemoteCallback<R> callback, Integer... successCodes)
          Creates a client/proxy for the provided JAX-RS resource interface.
static
<T,R> T
RestClient.create(Class<T> remoteService, String baseUrl, RemoteCallback<R> callback, RestErrorCallback errorCallback, Integer... successCodes)
          Creates a client/proxy for the provided JAX-RS resource interface.
 

Uses of RemoteCallback in org.jboss.errai.jpa.sync.client.local
 

Methods in org.jboss.errai.jpa.sync.client.local with parameters of type RemoteCallback
<E> void
ClientSyncManager.coldSync(String queryName, Class<E> queryResultType, Map<String,Object> queryParams, RemoteCallback<List<SyncResponse<E>>> onCompletion, ErrorCallback<?> onError)
          Performs a "cold" synchronization on the results of the given query with the given parameters.
 


Errai 3.0.1-SNAPSHOT

Copyright © 2013-2014 JBoss, a division of Red Hat. All Rights Reserved.