Package org.jboss.errai.common.client.api

Examples of org.jboss.errai.common.client.api.BatchCaller


public class BatchCallerProvider implements Provider<BatchCaller> {
  private static final RemoteServiceProxyFactory factory = new RemoteServiceProxyFactory();

  @Override
  public BatchCaller get() {
    return new BatchCaller() {
      private RpcBatchImpl batch = new RpcBatchImpl();
     
      @Override
      public <T> T call(RemoteCallback<?> callback, Class<T> remoteService) {
        return call(callback, null, remoteService);
View Full Code Here

TOP

Related Classes of org.jboss.errai.common.client.api.BatchCaller

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.