org.apache.activemq.artemis.core.server.management.NotificationListener

Here are the examples of the java api class org.apache.activemq.artemis.core.server.management.NotificationListener taken from open source projects.

1. SimpleNotificationService#sendNotification()

Project: activemq-artemis
File: SimpleNotificationService.java
@Override
public void sendNotification(final Notification notification) throws Exception {
    for (NotificationListener listener : listeners) {
        listener.onNotification(notification);
    }
}