Package com.mindscapehq.raygun4java.core
Interface IRaygunClientFactory
-
- All Known Implementing Classes:
RaygunClientFactory
public interface IRaygunClientFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AbstractRaygunSendEventChainFactorygetRaygunOnAfterSendChainFactory()AbstractRaygunSendEventChainFactorygetRaygunOnBeforeSendChainFactory()AbstractRaygunSendEventChainFactorygetRaygunOnFailedSendChainFactory()RaygunClientnewClient()IRaygunClientFactorywithAfterSend(IRaygunSendEventFactory<IRaygunOnAfterSend> onAfterSend)IRaygunClientFactorywithBeforeSend(IRaygunSendEventFactory<IRaygunOnBeforeSend> onBeforeSend)IRaygunClientFactorywithFailedSend(IRaygunSendEventFactory<IRaygunOnFailedSend> onFailedSend)
-
-
-
Method Detail
-
withBeforeSend
IRaygunClientFactory withBeforeSend(IRaygunSendEventFactory<IRaygunOnBeforeSend> onBeforeSend)
-
withAfterSend
IRaygunClientFactory withAfterSend(IRaygunSendEventFactory<IRaygunOnAfterSend> onAfterSend)
-
withFailedSend
IRaygunClientFactory withFailedSend(IRaygunSendEventFactory<IRaygunOnFailedSend> onFailedSend)
-
newClient
RaygunClient newClient()
-
getRaygunOnBeforeSendChainFactory
AbstractRaygunSendEventChainFactory getRaygunOnBeforeSendChainFactory()
-
getRaygunOnAfterSendChainFactory
AbstractRaygunSendEventChainFactory getRaygunOnAfterSendChainFactory()
-
getRaygunOnFailedSendChainFactory
AbstractRaygunSendEventChainFactory getRaygunOnFailedSendChainFactory()
-
-