com.bugsnag.delivery.HttpDelivery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bugsnag Show documentation
Show all versions of bugsnag Show documentation
Official Bugsnag notifier for Java applications
package com.bugsnag.delivery;
import java.net.Proxy;
public interface HttpDelivery extends Delivery {
/**
* Set the HTTP endpoint to deliver to.
*
* @param endpoint the endpoint, for example https://notify.bugsnag.com
*/
void setEndpoint(String endpoint);
/**
* The timeout to use.
*
* @param timeout the timeout for a delivery attempt.
*/
void setTimeout(int timeout);
/**
* The proxy to use.
*
* @param proxy the proxy for the delivery attempt.
*/
void setProxy(Proxy proxy);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy