Uses of Interface
com.mindscapehq.raygun4java.core.IRaygunSendEventFactory
-
-
Uses of IRaygunSendEventFactory in com.mindscapehq.raygun4java.core
Methods in com.mindscapehq.raygun4java.core that return IRaygunSendEventFactory Modifier and Type Method Description IRaygunSendEventFactoryAbstractRaygunSendEventChainFactory. getFirstFilterFactory()IRaygunSendEventFactoryAbstractRaygunSendEventChainFactory. getLastFilterFactory()Methods in com.mindscapehq.raygun4java.core that return types with arguments of type IRaygunSendEventFactory Modifier and Type Method Description List<IRaygunSendEventFactory<T>>AbstractRaygunSendEventChainFactory. getHandlersFactory()Methods in com.mindscapehq.raygun4java.core with parameters of type IRaygunSendEventFactory Modifier and Type Method Description AbstractRaygunSendEventChainFactory<T>AbstractRaygunSendEventChainFactory. afterAll(IRaygunSendEventFactory<T> lastFilter)AbstractRaygunSendEventChainFactory<T>AbstractRaygunSendEventChainFactory. beforeAll(IRaygunSendEventFactory<T> firstFilter)voidAbstractRaygunSendEventChainFactory. setFirstFilterFactory(IRaygunSendEventFactory<T> firstFilterFactory)voidAbstractRaygunSendEventChainFactory. setLastFilterFactory(IRaygunSendEventFactory<T> lastFilterFactory)IRaygunClientFactoryIRaygunClientFactory. withAfterSend(IRaygunSendEventFactory<IRaygunOnAfterSend> onAfterSend)RaygunClientFactoryRaygunClientFactory. withAfterSend(IRaygunSendEventFactory<IRaygunOnAfterSend> onAfterSend)Add a RaygunOnAfterSend handler factory.withAfterSend(myRaygunOnAfterSendFactory)IRaygunClientFactoryIRaygunClientFactory. withBeforeSend(IRaygunSendEventFactory<IRaygunOnBeforeSend> onBeforeSend)RaygunClientFactoryRaygunClientFactory. withBeforeSend(IRaygunSendEventFactory<IRaygunOnBeforeSend> onBeforeSend)Add a RaygunOnBeforeSend handler factory.withBeforeSend(myRaygunOnBeforeSendFactory)IRaygunClientFactoryIRaygunClientFactory. withFailedSend(IRaygunSendEventFactory<IRaygunOnFailedSend> onFailedSend)RaygunClientFactoryRaygunClientFactory. withFailedSend(IRaygunSendEventFactory<IRaygunOnFailedSend> onFailedSend)Add a RaygunOnFailedSend handler factory.withFailedSend(myRaygunOnFailedSendFactory)AbstractRaygunSendEventChainFactory<T>AbstractRaygunSendEventChainFactory. withFilterFactory(IRaygunSendEventFactory<T> handler)Method parameters in com.mindscapehq.raygun4java.core with type arguments of type IRaygunSendEventFactory Modifier and Type Method Description voidAbstractRaygunSendEventChainFactory. setHandlersFactory(List<IRaygunSendEventFactory<T>> handlersFactory)Constructor parameters in com.mindscapehq.raygun4java.core with type arguments of type IRaygunSendEventFactory Constructor Description AbstractRaygunSendEventChainFactory(List<IRaygunSendEventFactory<T>> handlers) -
Uses of IRaygunSendEventFactory in com.mindscapehq.raygun4java.core.handlers.offlinesupport
Classes in com.mindscapehq.raygun4java.core.handlers.offlinesupport that implement IRaygunSendEventFactory Modifier and Type Class Description classRaygunOnFailedSendOfflineStorageHandlerWhen a send failure occurs, this class attempts to write the payload to disk When a send success occurs, it resends any stored payloads on a new thread -
Uses of IRaygunSendEventFactory in com.mindscapehq.raygun4java.core.handlers.requestfilters
Classes in com.mindscapehq.raygun4java.core.handlers.requestfilters that implement IRaygunSendEventFactory Modifier and Type Class Description classAbstractRaygunRequestMapFilter<T>Base class to filter/redact withData from Raygun request mapsclassRaygunDuplicateErrorFilterFactoryThis factory creates the two filters required for duplicate error detection.classRaygunExcludeExceptionFilterGiven a set of class names, this filter will drop errors that contain any of the classes to exclude in the exception chain.classRaygunExcludeLocalRequestFilterExcludes requests that come from host names starting with "localhost"classRaygunExcludeRequestFilterDiscards the request if it matches the provided filterclassRaygunRequestCookieFilterGiven a list of cookie names, this will replace the cookie values with an optional replacementclassRaygunRequestFormFilterGiven a list of form field names, this will replace the field values with an optional replacementclassRaygunRequestHeaderFilterGiven a list of header names, this will replace the header values with an optional replacementclassRaygunRequestHttpStatusFilterWill filter out errors with the given http status codesclassRaygunRequestQueryStringFilterGiven a list of query string field names, this will replace the field values with an optional replacementclassRaygunStripWrappedExceptionFilterGiven a set of class names, this filter will remove matching exceptions from the exception chain.
-