Interface MonitoringStatisticsListener
-
@Contract @ConstrainedTo(SERVER) public interface MonitoringStatisticsListener
A Jersey specific provider that listens to monitoring statistics. Each time when new statistics are available, the implementation ofMonitoringStatisticsListenerwill be called and new statistics will be passed. Statistics are calculated in irregular undefined intervals. The provider must not throw any exception. The implementation of this interface can be registered as a standard Jersey/JAX-RS provider by annotating with@Providerannotation in the case of class path scanning, by registering as a provider usingResourceConfigor by returning fromApplication.getClasses()orApplication.getSingletons()}. The provider can be registered only on the server side.- Author:
- Miroslav Fuksa
- See Also:
DestroyListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonStatistics(MonitoringStatistics statistics)The method is called when new statistics are available and statistics are passed as an argument.
-
-
-
Method Detail
-
onStatistics
void onStatistics(MonitoringStatistics statistics)
The method is called when new statistics are available and statistics are passed as an argument.- Parameters:
statistics- Newly calculated monitoring statistics.
-
-