Package io.micronaut.http.netty.reactive
Interface HotObservable<T>
-
- Type Parameters:
T- The type of data being published
- All Superinterfaces:
org.reactivestreams.Publisher<T>
- All Known Implementing Classes:
HandlerPublisher
public interface HotObservable<T> extends org.reactivestreams.Publisher<T>A contract for a publisher that buffers data to allow for the release of that data if there will not be a subscriber.- Since:
- 1.2.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcloseIfNoSubscriber()Releases buffered data if there is no subscriber.
-