Package com.opengamma.livedata.server.combining

Examples of com.opengamma.livedata.server.combining.PriorityResolvingCombiningLiveDataServer


    List<ComponentInfo> infos = buildInfoList();
    List<StandardLiveDataServer> servers = Lists.newArrayList();
    for (ComponentInfo info : infos) {
      servers.add((StandardLiveDataServer) repo.getInstance(info));
    }
    PriorityResolvingCombiningLiveDataServer combinedServer = new PriorityResolvingCombiningLiveDataServer(servers, getCacheManager());
    configureServerPlugins(repo, combinedServer);
    repo.registerMBean(new LiveDataServerMBean(combinedServer));
    return combinedServer;
  }
View Full Code Here

TOP

Related Classes of com.opengamma.livedata.server.combining.PriorityResolvingCombiningLiveDataServer

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.