public void receivePublicationPart() {
if (this.destroyed == true) {
// client got destroyed, stop receive publication
return;
}
CscReceivePublicationCallback callback = new CscReceivePublicationCallback(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, true);
}