Package org.serviceconnector.cmd.casc

Examples of org.serviceconnector.cmd.casc.CascReceivePublicationCallback


  public void receivePublication() {
    if (this.destroyed == true) {
      // client got destroyed, stop receive publication
      return;
    }
    CascReceivePublicationCallback callback = new CascReceivePublicationCallback(this);
    // OTI for receive publication: DEFAULT_OPERATION_TIMEOUT_SECONDS + NO_DATA_INTERVAL
    int oti = (Constants.DEFAULT_OPERATION_TIMEOUT_SECONDS + this.getPublishService().getNoDataIntervalSeconds())
        * Constants.SEC_TO_MILLISEC_FACTOR;
    this.cascadedSC.receivePublication(this, callback, oti);
  }
View Full Code Here

TOP

Related Classes of org.serviceconnector.cmd.casc.CascReceivePublicationCallback

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.