Package com.opengamma.livedata.server.mxbean

Examples of com.opengamma.livedata.server.mxbean.DistributorTrace


      Instant instant = Instant.ofEpochMilli(creationTime.getTime());

      Set<DistributorTrace> distributors = new HashSet<>();

      for (MarketDataDistributor distributor : sub.getDistributors()) {
        distributors.add(new DistributorTrace(
            distributor.getDistributionSpec().getJmsTopic(),
            Instant.ofEpochMilli(distributor.getExpiry()).toString(),
            distributor.hasExpired(),
            distributor.isPersistent(),
            distributor.getNumMessagesSent()));
View Full Code Here

TOP

Related Classes of com.opengamma.livedata.server.mxbean.DistributorTrace

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.