Package com.lithic.api.services.blocking
Interface EventService
-
- All Implemented Interfaces:
public interface EventService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceEventService.WithRawResponseA view of EventService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract EventService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract EventService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
subscriptions
abstract SubscriptionService subscriptions()
-
eventSubscriptions
abstract EventSubscriptionService eventSubscriptions()
-
retrieve
Event retrieve(String eventToken, EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
Event retrieve(String eventToken, EventRetrieveParams params)
-
retrieve
abstract Event retrieve(EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
Event retrieve(EventRetrieveParams params)
-
retrieve
Event retrieve(String eventToken, RequestOptions requestOptions)
-
list
EventListPage list()
List all events.
-
list
abstract EventListPage list(EventListParams params, RequestOptions requestOptions)
-
list
EventListPage list(EventListParams params)
-
list
EventListPage list(RequestOptions requestOptions)
-
listAttempts
EventListAttemptsPage listAttempts(String eventToken)
List all the message attempts for a given event.
-
listAttempts
EventListAttemptsPage listAttempts(String eventToken, EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
EventListAttemptsPage listAttempts(String eventToken, EventListAttemptsParams params)
-
listAttempts
abstract EventListAttemptsPage listAttempts(EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
EventListAttemptsPage listAttempts(EventListAttemptsParams params)
-
listAttempts
EventListAttemptsPage listAttempts(String eventToken, RequestOptions requestOptions)
-
-
-
-