Package io.netty.channel
Interface RecvByteBufAllocator.ExtendedHandle
- 
- All Superinterfaces:
- RecvByteBufAllocator.Handle
 - All Known Implementing Classes:
- DefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle
 - Enclosing interface:
- RecvByteBufAllocator
 
 public static interface RecvByteBufAllocator.ExtendedHandle extends RecvByteBufAllocator.Handle 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontinueReading(UncheckedBooleanSupplier maybeMoreDataSupplier)Same asRecvByteBufAllocator.Handle.continueReading()except "more data" is determined by the supplier parameter.- 
Methods inherited from interface io.netty.channel.RecvByteBufAllocator.Handleallocate, attemptedBytesRead, attemptedBytesRead, continueReading, guess, incMessagesRead, lastBytesRead, lastBytesRead, readComplete, reset
 
- 
 
- 
- 
- 
Method Detail- 
continueReadingboolean continueReading(UncheckedBooleanSupplier maybeMoreDataSupplier) 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.
 
 
- 
 
-