Package com.opengamma.livedata.server

Examples of com.opengamma.livedata.server.SubscriptionListener


    assertEquals(0, realSubs.get());
  }

  private AtomicInteger countSubscriptions(StandardLiveDataServer server) {
    final AtomicInteger fakeSubs = new AtomicInteger(0);
    server.addSubscriptionListener(new SubscriptionListener() {
      @Override
      public void unsubscribed(Subscription subscription) {
        fakeSubs.decrementAndGet();
      }
      @Override
View Full Code Here

TOP

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

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.