Uses of Class
io.quarkiverse.githubapp.runtime.sse.HttpEventStreamClient
Packages that use HttpEventStreamClient
-
Uses of HttpEventStreamClient in io.quarkiverse.githubapp.runtime.sse
Methods in io.quarkiverse.githubapp.runtime.sse that return HttpEventStreamClientModifier and TypeMethodDescriptionHttpEventStreamClient.join()Blocks until this client has stopped listening.HttpEventStreamClient.start()Starts listening for SSE events and immediately returns.HttpEventStreamClient.stop()Stops without reconnecting.Methods in io.quarkiverse.githubapp.runtime.sse with parameters of type HttpEventStreamClientModifier and TypeMethodDescriptionvoidEventStreamAdapter.onClose(HttpEventStreamClient client, HttpResponse<Void> response) voidEventStreamListener.onClose(HttpEventStreamClient client, HttpResponse<Void> response) Gets called if client has been closedvoidEventStreamAdapter.onError(HttpEventStreamClient client, Throwable throwable) voidEventStreamListener.onError(HttpEventStreamClient client, Throwable throwable) Gets called if an error has occurredvoidEventStreamAdapter.onEvent(HttpEventStreamClient client, HttpEventStreamClient.Event event) voidEventStreamListener.onEvent(HttpEventStreamClient client, HttpEventStreamClient.Event event) Gets called if a new event has been receivedvoidEventStreamAdapter.onReconnect(HttpEventStreamClient client, HttpResponse<Void> response, boolean hasReceivedEvents, long lastEventID) voidEventStreamListener.onReconnect(HttpEventStreamClient client, HttpResponse<Void> response, boolean hasReceivedEvents, long lastEventID) Gets called ifHttpEventStreamClientlost connection and will reconnect