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

io.dropwizard.metrics.DefaultPosterFactory Maven / Gradle / Ivy

The newest version!
package io.dropwizard.metrics;

import com.fasterxml.jackson.annotation.JsonTypeName;
import com.librato.metrics.client.DefaultPoster;
import com.librato.metrics.client.IPoster;

@JsonTypeName("default")
public class DefaultPosterFactory implements PosterFactory {

    @Override
    public IPoster createPoster() {
        return new DefaultPoster();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy