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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
continueReading(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 Detail
-
continueReading
boolean 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.
-
-