Uses of Interface
io.quarkiverse.githubapp.runtime.sse.EventStreamListener
-
Packages that use EventStreamListener Package Description io.quarkiverse.githubapp.runtime.sse -
-
Uses of EventStreamListener in io.quarkiverse.githubapp.runtime.sse
Classes in io.quarkiverse.githubapp.runtime.sse that implement EventStreamListener Modifier and Type Class Description classEventStreamAdapterBase class for event stream listeners that can be used for theHttpEventStreamClientprotected classHttpEventStreamClient.InternalEventStreamAdapterFields in io.quarkiverse.githubapp.runtime.sse with type parameters of type EventStreamListener Modifier and Type Field Description protected HashSet<EventStreamListener>HttpEventStreamClient. listenersMethods in io.quarkiverse.githubapp.runtime.sse that return types with arguments of type EventStreamListener Modifier and Type Method Description Set<EventStreamListener>HttpEventStreamClient. getListeners()Returns a set containing all added listenersMethods in io.quarkiverse.githubapp.runtime.sse with parameters of type EventStreamListener Modifier and Type Method Description voidHttpEventStreamClient. addListener(EventStreamListener... listener)Adds a listener so it gets called on new events.voidHttpEventStreamClient. removeListener(EventStreamListener... listener)Removes the listeners so they no longer get calledConstructors in io.quarkiverse.githubapp.runtime.sse with parameters of type EventStreamListener Constructor Description HttpEventStreamClient(String url, EventStreamListener... listener)Creates a HTTP client that listens for Server-Sent Events (SSE).HttpEventStreamClient(String url, HttpRequestMethod method, HttpRequest.BodyPublisher requestBody, HttpClient.Version version, Map<String,String> headers, long timeout, long retryCooldown, int maxReconnectsWithoutEvents, boolean resetEventIDonReconnect, HttpClient client, EventStreamListener... listener)Creates a HTTP client that listens for Server-Sent Events (SSE).HttpEventStreamClient(String url, HttpRequestMethod method, HttpRequest.BodyPublisher requestBody, Map<String,String> headers, long timeout, long retryCooldown, EventStreamListener... listener)Creates a HTTP client that listens for Server-Sent Events (SSE).HttpEventStreamClient(String url, HttpRequestMethod method, HttpRequest.BodyPublisher requestBody, Map<String,String> headers, EventStreamListener... listener)Creates a HTTP client that listens for Server-Sent Events (SSE).HttpEventStreamClient(String url, Map<String,String> headers, EventStreamListener... listener)Creates a HTTP client that listens for Server-Sent Events (SSE).
-