Class NonWorkingContentChannel

java.lang.Object
com.yahoo.jdisc.test.NonWorkingContentChannel
All Implemented Interfaces:
ContentChannel

public final class NonWorkingContentChannel extends Object implements ContentChannel
Author:
Simon Thoresen Hult
  • Constructor Details

    • NonWorkingContentChannel

      public NonWorkingContentChannel()
  • Method Details

    • write

      public void write(ByteBuffer buf, CompletionHandler handler)
      Description copied from interface: ContentChannel
      Schedules the given ByteBuffer to be written to the content corresponding to this ContentChannel. This call transfers ownership of the given ByteBuffer to this ContentChannel, i.e. no further calls can be made to the buffer. The execution of writes happen in the same order as this method was invoked.
      Specified by:
      write in interface ContentChannel
      Parameters:
      buf - The ByteBuffer to schedule for write. No further calls can be made to this buffer.
      handler - The CompletionHandler to call after the write has been executed.
    • close

      public void close(CompletionHandler handler)
      Description copied from interface: ContentChannel
      Closes this ContentChannel. After a channel is closed, any further attempt to invoke ContentChannel.write(ByteBuffer, CompletionHandler) upon it will cause an IllegalStateException to be thrown. If this channel is already closed then invoking this method has no effect, but CompletionHandler.completed() will still be called. Notice that you MUST call this method, regardless of any exceptions that might have occurred while writing to this ContentChannel. Failure to do so will prevent the Container from ever shutting down.
      Specified by:
      close in interface ContentChannel
      Parameters:
      handler - The CompletionHandler to call after the close has been executed.