com.rollbar.notifier.config.ConfigProvider 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.config;
public interface ConfigProvider {
/**
* Provides the config given a builder.
*
* @param builder an instance of {@link ConfigBuilder} with defaults set
* @return the config
*/
Config provide(ConfigBuilder builder);
}