Package org.serviceconnector.call

Examples of org.serviceconnector.call.SCMPCscExecuteCall


   *            the callback
   * @param timeoutMillis
   *            the timeout milliseconds
   */
  public void execute(SCMPMessage msgToForward, ISCMPMessageCallback callback, int timeoutMillis) {
    SCMPCscExecuteCall executeCall = new SCMPCscExecuteCall(this.requester, msgToForward);
    try {
      executeCall.invoke(callback, (int) (this.operationTimeoutMultiplier * timeoutMillis));
    } catch (Exception e) {
      // send data failed
      callback.receive(e);
    }
  }
View Full Code Here


   *            the callback
   * @param timeoutMillis
   *            the timeout milliseconds
   */
  public void execute(SCMPMessage msgToForward, ISCMPMessageCallback callback, int timeoutMillis) {
    SCMPCscExecuteCall executeCall = new SCMPCscExecuteCall(this.requester, msgToForward);
    try {
      executeCall.invoke(callback, (int) (this.operationTimeoutMultiplier * timeoutMillis));
    } catch (Exception e) {
      // send data failed
      callback.receive(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.serviceconnector.call.SCMPCscExecuteCall

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.