
com.mindscapehq.raygun4java.core.RaygunOnFailedSendChain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
The official provider for the Raygun error tracking service. This core project is plugged in to your desktop, mobile or web application, and performs the actual sending.
package com.mindscapehq.raygun4java.core;
import com.mindscapehq.raygun4java.core.messages.RaygunMessage;
import java.util.List;
/**
* This is a OnFailedSend chain handler.
*
* Instances are not shared between RaygunClient instances
*/
public class RaygunOnFailedSendChain extends AbstractRaygunOnSendEventChain implements IRaygunOnFailedSend {
public RaygunOnFailedSendChain(List handlers) {
super(handlers);
}
public String handle(RaygunClient client, IRaygunOnFailedSend handler, String message) {
return handler.onFailedSend(client, message);
}
public String onFailedSend(RaygunClient client, String message) {
return handle(client, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy