Examples of IProcessorStatistics


Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    }
    return null;
  }

  public Long getExchangesCompleted() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getExchangesCompleted();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getExchangesCompleted();
  }

  public Long getExchangesFailed() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getExchangesFailed();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getExchangesFailed();
  }

  public Long getFailuresHandled() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getFailuresHandled();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getFailuresHandled();
  }

  public Long getRedeliveries() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getRedeliveries();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getRedeliveries();
  }

  public Long getExternalRedeliveries() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getExternalRedeliveries();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getExternalRedeliveries();
  }

  public Long getMinProcessingTime() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getMinProcessingTime();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getMinProcessingTime();
  }

  public Long getMaxProcessingTime() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getMaxProcessingTime();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getMaxProcessingTime();
  }

  public Long getTotalProcessingTime() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getTotalProcessingTime();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getTotalProcessingTime();
  }

  public Long getLastProcessingTime() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getLastProcessingTime();
  }
View Full Code Here

Examples of org.fusesource.ide.jmx.camel.navigator.stats.model.IProcessorStatistics

    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getLastProcessingTime();
  }

  public Long getMeanProcessingTime() {
    IProcessorStatistics stats = stats();
    return (stats == null) ? null : stats.getMeanProcessingTime();
  }
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.