use of cern.cmw.mom.pubsub.Subscriber in project ACS by ACS-Community.
the class AlarmSelectionHelper method resetSelection.
public void resetSelection() throws LaserException {
try {
Subscriber subscriber = getSubscriber();
subscriber.unSubscribeAll();
} catch (Exception e) {
throw new LaserException("unable to unsubscribe all");
}
if (cmwSubscriber != null) {
cmwSubscriber.close();
// cmwSubscriber = null;
}
}
Aggregations