Package com.yahoo.jdisc.test
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 Summary
Constructors Constructor Description NonWorkingContentChannel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close(CompletionHandler handler)
Closes this ContentChannel.void
write(ByteBuffer buf, CompletionHandler handler)
Schedules the givenByteBuffer
to be written to the content corresponding to this ContentChannel.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.yahoo.jdisc.handler.ContentChannel
onError
-
-
-
-
Method Detail
-
write
public void write(ByteBuffer buf, CompletionHandler handler)
Description copied from interface:ContentChannel
Schedules the givenByteBuffer
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 interfaceContentChannel
- Parameters:
buf
- TheByteBuffer
to schedule for write. No further calls can be made to this buffer.handler
- TheCompletionHandler
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 invokeContentChannel.write(ByteBuffer, CompletionHandler)
upon it will cause anIllegalStateException
to be thrown. If this channel is already closed then invoking this method has no effect, butCompletionHandler.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 theContainer
from ever shutting down.- Specified by:
close
in interfaceContentChannel
- Parameters:
handler
- TheCompletionHandler
to call after the close has been executed.
-
-