Exemple #1
0
  protected void fireMessageListenerUnregisteredEvent(
      Destination destination, MessageListener messageListener) {

    for (DestinationEventListener destinationEventListener : _destinationEventListeners) {

      destinationEventListener.messageListenerUnregistered(destination.getName(), messageListener);
    }
  }
Exemple #2
0
 protected void fireDestinationRemovedEvent(Destination destination) {
   for (DestinationEventListener listener : _destinationEventListeners) {
     listener.destinationRemoved(destination);
   }
 }