Package com.lithic.api.services.async
Interface EventServiceAsync
-
- All Implemented Interfaces:
public interface EventServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceEventServiceAsync.WithRawResponseA view of EventServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract EventServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract EventServiceAsync 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 SubscriptionServiceAsync subscriptions()
-
eventSubscriptions
abstract EventSubscriptionServiceAsync eventSubscriptions()
-
retrieve
CompletableFuture<Event> retrieve(String eventToken)
Get an event.
-
retrieve
CompletableFuture<Event> retrieve(String eventToken, EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Event> retrieve(String eventToken, EventRetrieveParams params)
-
retrieve
abstract CompletableFuture<Event> retrieve(EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<Event> retrieve(EventRetrieveParams params)
-
retrieve
CompletableFuture<Event> retrieve(String eventToken, RequestOptions requestOptions)
-
list
CompletableFuture<EventListPageAsync> list()
List all events.
-
list
abstract CompletableFuture<EventListPageAsync> list(EventListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<EventListPageAsync> list(EventListParams params)
-
list
CompletableFuture<EventListPageAsync> list(RequestOptions requestOptions)
-
listAttempts
CompletableFuture<EventListAttemptsPageAsync> listAttempts(String eventToken)
List all the message attempts for a given event.
-
listAttempts
CompletableFuture<EventListAttemptsPageAsync> listAttempts(String eventToken, EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
CompletableFuture<EventListAttemptsPageAsync> listAttempts(String eventToken, EventListAttemptsParams params)
-
listAttempts
abstract CompletableFuture<EventListAttemptsPageAsync> listAttempts(EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
CompletableFuture<EventListAttemptsPageAsync> listAttempts(EventListAttemptsParams params)
-
listAttempts
CompletableFuture<EventListAttemptsPageAsync> listAttempts(String eventToken, RequestOptions requestOptions)
-
-
-
-