Package org.serviceconnector.call

Examples of org.serviceconnector.call.SCMPSrvSubscribeCall


   */
  public void subscribe(SCMPMessage msgToForward, ISCMPMessageCallback callback, int timeoutMillis)
      throws ConnectionPoolBusyException {
    // setting the http url file qualifier which is necessary to communicate with the server.
    msgToForward.setHttpUrlFileQualifier(this.remoteNodeConfiguration.getHttpUrlFileQualifier());
    SCMPSrvSubscribeCall subscribeCall = new SCMPSrvSubscribeCall(requester, msgToForward);
    try {
      subscribeCall.invoke(callback, timeoutMillis);
    } catch (ConnectionPoolBusyException ex) {
      throw ex;
    } catch (Exception e) {
      // subscribe failed
      callback.receive(e);
View Full Code Here


   */
  public void subscribe(SCMPMessage msgToForward, ISCMPMessageCallback callback, int timeoutMillis)
      throws ConnectionPoolBusyException {
    // setting the http url file qualifier which is necessary to communicate with the server.
    msgToForward.setHttpUrlFileQualifier(this.remoteNodeConfiguration.getHttpUrlFileQualifier());
    SCMPSrvSubscribeCall subscribeCall = new SCMPSrvSubscribeCall(requester, msgToForward);
    try {
      subscribeCall.invoke(callback, timeoutMillis);
    } catch (ConnectionPoolBusyException ex) {
      throw ex;
    } catch (Exception e) {
      // subscribe failed
      callback.receive(e);
View Full Code Here

TOP

Related Classes of org.serviceconnector.call.SCMPSrvSubscribeCall

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.