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 Detail

      • closeIfNoSubscriber

        void closeIfNoSubscriber()
        Releases buffered data if there is no subscriber.