com.rollbar.notifier.provider.Provider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-java Show documentation
Show all versions of rollbar-java Show documentation
For connecting your applications built on the JVM to Rollbar for Error Reporting
package com.rollbar.notifier.provider;
import com.rollbar.notifier.Rollbar;
import com.rollbar.notifier.config.Config;
/**
* Provider interface used to retrieve different data by {@link Rollbar the notifier} through the
* {@link Config config} supplied to it.
*/
public interface Provider {
/**
* Provides the value.
*
* @return the value.
*/
T provide();
}