Interface ProtocolEncoderOutput

    • Method Detail

      • mergeAll

        void mergeAll()
        Merges all buffers you wrote via write(Object) into one IoBuffer and replaces the old fragmented ones with it. This method is useful when you want to control the way MINA generates network packets. Please note that this method only works when you called write(Object) method with only IoBuffers.
        Throws:
        IllegalStateException - if you wrote something else than IoBuffer
      • flush

        WriteFuture flush()
        Flushes all buffers you wrote via write(Object) to the session. This operation is asynchronous; please wait for the returned WriteFuture if you want to wait for the buffers flushed.
        Returns:
        null if there is nothing to flush at all.