public interface SseClient
Modifier and Type | Method and Description |
---|---|
<I> org.reactivestreams.Publisher<Event<ByteBuffer<?>>> |
eventStream(HttpRequest<I> request)
Perform an HTTP request and receive data as a stream of SSE
Event objects as they become available without blocking. |
<I,B> org.reactivestreams.Publisher<Event<B>> |
eventStream(HttpRequest<I> request,
Argument<B> eventType)
Perform an HTTP request and receive data as a stream of SSE
Event objects as they become available without blocking. |
default <I,B> org.reactivestreams.Publisher<Event<B>> |
eventStream(HttpRequest<I> request,
java.lang.Class<B> eventType)
Perform an HTTP request and receive data as a stream of SSE
Event objects as they become available without blocking. |
default <B> org.reactivestreams.Publisher<Event<B>> |
eventStream(java.lang.String uri,
Argument<B> eventType)
Perform an HTTP GET request and receive data as a stream of SSE
Event objects as they become available without blocking. |
default <B> org.reactivestreams.Publisher<Event<B>> |
eventStream(java.lang.String uri,
java.lang.Class<B> eventType)
Perform an HTTP GET request and receive data as a stream of SSE
Event objects as they become available without blocking. |
<I> org.reactivestreams.Publisher<Event<ByteBuffer<?>>> eventStream(HttpRequest<I> request)
Perform an HTTP request and receive data as a stream of SSE Event
objects as they become available without blocking.
The downstream Subscriber
can regulate demand via the subscription
I
- The request body typerequest
- The HttpRequest
to executePublisher
that emits an Event
with the data represented as a ByteBuffer
<I,B> org.reactivestreams.Publisher<Event<B>> eventStream(HttpRequest<I> request, Argument<B> eventType)
Perform an HTTP request and receive data as a stream of SSE Event
objects as they become available without blocking.
The downstream Subscriber
can regulate demand via the subscription
I
- The request body typeB
- The event body typerequest
- The HttpRequest
to executeeventType
- The event data typePublisher
that emits an Event
with the data represented by the eventType argumentdefault <I,B> org.reactivestreams.Publisher<Event<B>> eventStream(HttpRequest<I> request, java.lang.Class<B> eventType)
Perform an HTTP request and receive data as a stream of SSE Event
objects as they become available without blocking.
The downstream Subscriber
can regulate demand via the subscription
I
- The request body typeB
- The event body typerequest
- The HttpRequest
to executeeventType
- The event data typePublisher
that emits an Event
with the data represented by the eventType argumentdefault <B> org.reactivestreams.Publisher<Event<B>> eventStream(java.lang.String uri, java.lang.Class<B> eventType)
Perform an HTTP GET request and receive data as a stream of SSE Event
objects as they become available without blocking.
The downstream Subscriber
can regulate demand via the subscription
B
- The event body typeuri
- The request URIeventType
- The event data typePublisher
that emits an Event
with the data represented by the eventType argumentdefault <B> org.reactivestreams.Publisher<Event<B>> eventStream(java.lang.String uri, Argument<B> eventType)
Perform an HTTP GET request and receive data as a stream of SSE Event
objects as they become available without blocking.
The downstream Subscriber
can regulate demand via the subscription
B
- The event body typeuri
- The request URIeventType
- The event data typePublisher
that emits an Event
with the data represented by the eventType argument