Package com.opengamma.transport.jms

Examples of com.opengamma.transport.jms.JmsByteArrayMessageDispatcher


   * @param topic The topic for {@link MarketDataAvailabilityNotification} messages
   * @param jmsConnector For receiving JMS messages
   */
  public AvailabilityNotificationListener(String topic, JmsConnector jmsConnector) {
    ByteArrayFudgeMessageReceiver receiver = new ByteArrayFudgeMessageReceiver(new Receiver());
    JmsByteArrayMessageDispatcher dispatcher = new JmsByteArrayMessageDispatcher(receiver);
    _jmsTopicContainer = jmsConnector.getTopicContainerFactory().create(topic, dispatcher);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.transport.jms.JmsByteArrayMessageDispatcher

Copyright © 2018 www.massapicom. 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.