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

com.timgroup.statsd.StatsDClientErrorHandler Maven / Gradle / Ivy

Go to download

A tiny library allowing Java applications to communicate with statsd instances easily.

There is a newer version: 3.1.0
Show newest version
package com.timgroup.statsd;

/**
 * Describes a handler capable of processing exceptions that occur during StatsD client operations.
 * 
 * @author Tom Denley
 *
 */
public interface StatsDClientErrorHandler {

    /**
     * Handle the given exception, which occurred during a StatsD client operation.
     * 
     * @param exception
     *     the {@link Exception} that occurred
     */
    void handle(Exception exception);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy