use of info.ganglia.gmetric4j.gmetric.GMetricPublisher in project camel by apache.
the class GangliaEndpoint method getPublisher.
public synchronized Publisher getPublisher() {
if (publisher == null) {
GMetric gmetric = configuration.createGMetric();
publisher = new GMetricPublisher(gmetric);
}
return publisher;
}
Aggregations