Examples of JMSNotificationType


Examples of org.hornetq.jms.server.management.JMSNotificationType

   @Override
   public void onNotification(org.hornetq.core.server.management.Notification notification)
   {
      if (!(notification.getType() instanceof JMSNotificationType)) return;
      JMSNotificationType type = (JMSNotificationType) notification.getType();
      TypedProperties prop = notification.getProperties();

      this.broadcaster.sendNotification(new Notification(type.toString(), this,
            notifSeq.incrementAndGet(), prop.getSimpleStringProperty(JMSNotificationType.MESSAGE).toString()));
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.