Package org.jboss.errai.bus.client.api.builder

Examples of org.jboss.errai.bus.client.api.builder.DefaultRemoteCallBuilder


   * Creates an <tt>AbstractRemoteCallBuilder</tt> to construct a call.
   *
   * @return an instance of <tt>AbstractRemoteCallBuilder</tt>
   */
  public static DefaultRemoteCallBuilder createCall() {
    return new DefaultRemoteCallBuilder(CommandMessage.create());
  }
View Full Code Here


   *          The return type of the invoked method.
   * @return A proxy for the remote service. Methods invoked on this object will communicate with the remote service
   *         over the message bus.
   */
  public static <R, T> T createCall(RemoteCallback<R> callback, Class<T> service) {
    return new DefaultRemoteCallBuilder(CommandMessage.create()).call(callback, service);
  }
View Full Code Here

   *          The return type of the invoked method.
   * @return A proxy for the remote service. Methods invoked on this object will communicate with the remote service
   *         over the message bus.
   */
  public static <R, T> T createCall(RemoteCallback<R> callback, ErrorCallback errorCallback, Class<T> service) {
    return new DefaultRemoteCallBuilder(CommandMessage.create()).call(callback, errorCallback, service);
  }
View Full Code Here

   * Creates an <tt>AbstractRemoteCallBuilder</tt> to construct a call.
   *
   * @return an instance of <tt>AbstractRemoteCallBuilder</tt>
   */
  public static DefaultRemoteCallBuilder createCall() {
    return new DefaultRemoteCallBuilder(CommandMessage.create());
  }
View Full Code Here

   *          The return type of the invoked method.
   * @return A proxy for the remote service. Methods invoked on this object will communicate with the remote service
   *         over the message bus.
   */
  public static <R, T> T createCall(RemoteCallback<R> callback, Class<T> service) {
    return new DefaultRemoteCallBuilder(CommandMessage.create()).call(callback, service);
  }
View Full Code Here

   *          The return type of the invoked method.
   * @return A proxy for the remote service. Methods invoked on this object will communicate with the remote service
   *         over the message bus.
   */
  public static <R, T> T createCall(RemoteCallback<R> callback, ErrorCallback errorCallback, Class<T> service) {
    return new DefaultRemoteCallBuilder(CommandMessage.create()).call(callback, errorCallback, service);
  }
View Full Code Here

   * Creates an <tt>AbstractRemoteCallBuilder</tt> to construct a call.
   *
   * @return an instance of <tt>AbstractRemoteCallBuilder</tt>
   */
  public static DefaultRemoteCallBuilder createCall() {
    return new DefaultRemoteCallBuilder(CommandMessage.create());
  }
View Full Code Here

   *          The return type of the invoked method.
   * @return A proxy for the remote service. Methods invoked on this object will communicate with the remote service
   *         over the message bus.
   */
  public static <R, T> T createCall(final RemoteCallback<R> callback, final Class<T> service) {
    return new DefaultRemoteCallBuilder(CommandMessage.create()).call(callback, service);
  }
View Full Code Here

   *          The return type of the invoked method.
   * @return A proxy for the remote service. Methods invoked on this object will communicate with the remote service
   *         over the message bus.
   */
  public static <R, T> T createCall(final RemoteCallback<R> callback, final BusErrorCallback errorCallback, final Class<T> service) {
    return new DefaultRemoteCallBuilder(CommandMessage.create()).call(callback, errorCallback, service);
  }
View Full Code Here

   * Creates an <tt>AbstractRemoteCallBuilder</tt> to construct a call.
   *
   * @return an instance of <tt>AbstractRemoteCallBuilder</tt>
   */
  public static DefaultRemoteCallBuilder createCall() {
    return new DefaultRemoteCallBuilder(CommandMessage.create());
  }
View Full Code Here

TOP

Related Classes of org.jboss.errai.bus.client.api.builder.DefaultRemoteCallBuilder

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.