Interface BinaryNIOInputSource
- All Superinterfaces:
InputSource
- All Known Implementing Classes:
NIOInputStream
InputSources to obtain the incoming
Buffer directly without having to use intermediate objects to copy the data to.- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the the duplicate of the underlyingBufferthat backs thisInputSource.Returns the underlyingBufferthat backs thisInputSource.readBuffer(int size) Methods inherited from interface org.glassfish.grizzly.InputSource
isFinished, isReady, notifyAvailable, notifyAvailable, readyData
-
Method Details
-
getBuffer
Buffer getBuffer()Returns the the duplicate of the underlying
Bufferthat backs thisInputSource. The content of the returned buffer will be that of the underlying buffer. Changes to returned buffer's content will be visible in the underlying buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.- Returns:
- the duplicate of the underlying
Bufferthat backs thisInputSource.
-
readBuffer
Buffer readBuffer()Returns the underlying
Bufferthat backs thisInputSource. UnlikegetBuffer(), this method detaches the returnedBuffer, so user becomes responsible for handling theBuffer's life-cycle.- Returns:
- the underlying
Bufferthat backs thisInputSource.
-
readBuffer
Returns the
Bufferof a given size, which represents a chunk of the underlyingBufferthat backs thisInputSource. UnlikegetBuffer(), this method detaches the returnedBuffer, so user becomes responsible for handling theBuffer's life-cycle.
-