Interface BroadcasterListener<T>

    • Method Detail

      • onException

        void onException​(ChunkedOutput<T> chunkedOutput,
                         java.lang.Exception exception)
        Called when exception was thrown by a given chunked response when trying to write to it or close it.
        Parameters:
        chunkedOutput - instance that threw exception
        exception - thrown exception
      • onClose

        void onClose​(ChunkedOutput<T> chunkedOutput)
        Called when the chunkedOutput has been closed (either by client closing the connection or by calling ChunkedOutput.close() on the server side.
        Parameters:
        chunkedOutput - instance that has been closed.