6162636465666768
} return null; } public Long getExchangesCompleted() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getExchangesCompleted(); }
6667686970717273
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getExchangesCompleted(); } public Long getExchangesFailed() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getExchangesFailed(); }
7172737475767778
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getExchangesFailed(); } public Long getFailuresHandled() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getFailuresHandled(); }
7677787980818283
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getFailuresHandled(); } public Long getRedeliveries() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getRedeliveries(); }
8182838485868788
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getRedeliveries(); } public Long getExternalRedeliveries() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getExternalRedeliveries(); }
8687888990919293
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getExternalRedeliveries(); } public Long getMinProcessingTime() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getMinProcessingTime(); }
9192939495969798
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getMinProcessingTime(); } public Long getMaxProcessingTime() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getMaxProcessingTime(); }
96979899100101102103
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getMaxProcessingTime(); } public Long getTotalProcessingTime() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getTotalProcessingTime(); }
101102103104105106107108
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getTotalProcessingTime(); } public Long getLastProcessingTime() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getLastProcessingTime(); }
106107108109110111112113
IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getLastProcessingTime(); } public Long getMeanProcessingTime() { IProcessorStatistics stats = stats(); return (stats == null) ? null : stats.getMeanProcessingTime(); }