All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.signalfx.metrics.errorhandler.ExitOnSendError Maven / Gradle / Ivy

package com.signalfx.metrics.errorhandler;

/**
 * Handler that calls exit() on any failure at all
 * 
 * @author jack
 */
public class ExitOnSendError implements OnSendErrorHandler {
    @Override
    public void handleError(MetricError metricError) {
        System.exit(1);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy