Uses of Class
com.mindscapehq.raygun4java.core.AbstractRaygunSendEventChainFactory
-
Packages that use AbstractRaygunSendEventChainFactory Package Description com.mindscapehq.raygun4java.core -
-
Uses of AbstractRaygunSendEventChainFactory in com.mindscapehq.raygun4java.core
Subclasses of AbstractRaygunSendEventChainFactory in com.mindscapehq.raygun4java.core Modifier and Type Class Description classRaygunOnAfterSendChainFactoryA factory used to create RaygunOnAfterSendChain for a new RaygunClient usage: raygunClient.setOnAfterSend( new RaygunOnAfterSendChainFactory() .beforeAll(executeFirstFactory) .withFilterFactory(aFilterFactory), .withFilterFactory(anotherFilterFactory) .afterAll(executeAfterFactory) ) .create() );classRaygunOnBeforeSendChainFactoryA factory used to create RaygunOnBeforeSendChain for a new RaygunClient usage: raygunClient.setOnBeforeSend( new RaygunOnBeforeSendChainFactory() .beforeAll(executeFirstFactory) .withFilterFactory(aFilterFactory), .withFilterFactory(anotherFilterFactory) .afterAll(executeAfterFactory) ) .create() );classRaygunOnFailedSendChainFactoryA factory used to create RaygunOnFailedSendChain for a new RaygunClient usage: raygunClient.setOnFailedSend( new RaygunOnFailedSendChainFactory() .beforeAll(executeFirstFactory) .withFilterFactory(aFilterFactory), .withFilterFactory(anotherFilterFactory) .afterAll(executeAfterFactory) ) .create() );
-