com.tapstream.rollbar.IHttpRequester Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-logback Show documentation
Show all versions of rollbar-logback Show documentation
A Rollbar logback appender that includes out of the box support for servlets
package com.tapstream.rollbar;
import java.io.IOException;
public interface IHttpRequester {
public int send(HttpRequest request) throws IOException;
}