Package io.netty.channel
Interface RecvByteBufAllocator.ExtendedHandle
- All Superinterfaces:
RecvByteBufAllocator.Handle
- All Known Implementing Classes:
AdaptiveRecvByteBufAllocator.HandleImpl,DefaultMaxBytesRecvByteBufAllocator.HandleImpl,DefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle,EpollRecvByteAllocatorHandle,EpollRecvByteAllocatorStreamingHandle,FixedRecvByteBufAllocator.HandleImpl,KQueueRecvByteAllocatorHandle
- Enclosing interface:
RecvByteBufAllocator
-
Method Summary
Modifier and TypeMethodDescriptionbooleancontinueReading(UncheckedBooleanSupplier maybeMoreDataSupplier) Same asRecvByteBufAllocator.Handle.continueReading()except "more data" is determined by the supplier parameter.Methods inherited from interface io.netty.channel.RecvByteBufAllocator.Handle
allocate, attemptedBytesRead, attemptedBytesRead, continueReading, guess, incMessagesRead, lastBytesRead, lastBytesRead, readComplete, reset
-
Method Details
-
continueReading
Same asRecvByteBufAllocator.Handle.continueReading()except "more data" is determined by the supplier parameter.- Parameters:
maybeMoreDataSupplier- A supplier that determines if there maybe more data to read.
-