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

com.rollbar.notifier.config.Config Maven / Gradle / Ivy

Go to download

For connecting your applications built on the JVM to Rollbar for Error Reporting

There is a newer version: 2.0.0-alpha.1
Show newest version
package com.rollbar.notifier.config;

import com.rollbar.notifier.Rollbar;
import com.rollbar.notifier.sender.Sender;
import com.rollbar.notifier.sender.json.JsonSerializer;

import java.net.Proxy;

/**
 * The configuration for the {@link Rollbar notifier}.
 */
public interface Config extends CommonConfig {
  /**
   * Get the {@link Sender sender}.
   *
   * @return the sender.
   */
  Sender sender();

  /**
   * Get the {@link Proxy proxy}.
   *
   * @return the proxy.
   */
  Proxy proxy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy