Uses of Class
io.quarkiverse.githubapp.runtime.sse.HttpEventStreamClient
-
Packages that use HttpEventStreamClient Package Description io.quarkiverse.githubapp.runtime.sse -
-
Uses of HttpEventStreamClient in io.quarkiverse.githubapp.runtime.sse
Methods in io.quarkiverse.githubapp.runtime.sse that return HttpEventStreamClient Modifier and Type Method Description HttpEventStreamClientHttpEventStreamClient. join()Blocks until this client has stopped listening.HttpEventStreamClientHttpEventStreamClient. start()Starts listening for SSE events and immediately returns.HttpEventStreamClientHttpEventStreamClient. stop()Stops without reconnecting.Methods in io.quarkiverse.githubapp.runtime.sse with parameters of type HttpEventStreamClient Modifier and Type Method Description voidEventStreamAdapter. 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
-