Examples of MarketDataDistributor


Examples of com.opengamma.livedata.server.distribution.MarketDataDistributor

  /*package*/ void removeDistributor(MarketDataDistributor distributor) {
    removeDistributor(distributor.getDistributionSpec());
  }

  /*package*/ void removeDistributor(DistributionSpecification spec) {
    MarketDataDistributor removed = _distributors.remove(spec);
    if (removed != null) {
      s_logger.info("Removed {} from {}", removed, this);     
    } else {
      s_logger.info("Removed distribution spec {} from {} (no-op)", spec, this);
    }
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.