Package com.opengamma.livedata.server

Examples of com.opengamma.livedata.server.SubscriptionRequestReceiver


  private static ByteArrayFudgeRequestSender getSubscriptionRequestSender(StandardLiveDataServer server) {
    ByteArrayFudgeRequestSender subscriptionRequestSender = new ByteArrayFudgeRequestSender(
        new InMemoryByteArrayRequestConduit(
            new FudgeRequestDispatcher(
                new SubscriptionRequestReceiver(server))));
    return subscriptionRequestSender;
  }
View Full Code Here


   *
   * @param repo the repository, not null
   * @param server the server, not null
   */
  protected void publishJmsSubscription(ComponentRepository repo, StandardLiveDataServer server) {
    SubscriptionRequestReceiver receiver = new SubscriptionRequestReceiver(server);
    FudgeRequestDispatcher dispatcher = new FudgeRequestDispatcher(receiver);

    String topicName = getJmsSubscriptionTopic();

    if (topicName != null) {
View Full Code Here

TOP

Related Classes of com.opengamma.livedata.server.SubscriptionRequestReceiver

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.