Package com.opengamma.livedata.server.distribution

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

Related Classes of com.opengamma.livedata.server.distribution.MarketDataDistributor

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.