Interface | Description |
---|---|
StreamMessage<T> | |
StreamWriter<T> |
Produces the objects to be published by a
StreamMessage . |
Class | Description |
---|---|
DefaultStreamMessage<T> |
A
StreamMessage which buffers the elements to be signaled into a Queue . |
DeferredStreamMessage<T> |
A
StreamMessage whose stream is published later by another StreamMessage . |
FilteredStreamMessage<T,U> |
A
StreamMessage that filters objects as they are published. |
NoopSubscriber<T> |
A
Subscriber that discards all elements silently. |
PublisherBasedStreamMessage<T> |
Adapts a
Publisher into a StreamMessage . |
Exception | Description |
---|---|
CancelledSubscriptionException |
A
RuntimeException that is raised to notify StreamMessage.closeFuture() when a
Subscriber has cancelled its Subscription . |
ClosedPublisherException |
A
RuntimeException that is raised when a StreamWriter attempts to write an object to a
closed StreamMessage . |