Uses of Interface
io.netty.channel.RecvByteBufAllocator.Handle
-
Packages that use RecvByteBufAllocator.Handle Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of RecvByteBufAllocator.Handle in io.netty.channel
Subinterfaces of RecvByteBufAllocator.Handle in io.netty.channel Modifier and Type Interface Description static interfaceRecvByteBufAllocator.ExtendedHandleClasses in io.netty.channel that implement RecvByteBufAllocator.Handle Modifier and Type Class Description private classAdaptiveRecvByteBufAllocator.HandleImplprivate classDefaultMaxBytesRecvByteBufAllocator.HandleImplclassDefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandleFocuses on enforcing the maximum messages per read condition forDefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle.continueReading().private classFixedRecvByteBufAllocator.HandleImplstatic classRecvByteBufAllocator.DelegatingHandleARecvByteBufAllocator.Handlewhich delegates all call to some otherRecvByteBufAllocator.Handle.Fields in io.netty.channel declared as RecvByteBufAllocator.Handle Modifier and Type Field Description private RecvByteBufAllocator.HandleRecvByteBufAllocator.DelegatingHandle. delegateprivate RecvByteBufAllocator.HandleAbstractChannel.AbstractUnsafe. recvHandleMethods in io.netty.channel that return RecvByteBufAllocator.Handle Modifier and Type Method Description protected RecvByteBufAllocator.HandleRecvByteBufAllocator.DelegatingHandle. delegate()Get theRecvByteBufAllocator.Handlewhich all methods will be delegated to.RecvByteBufAllocator.HandleAdaptiveRecvByteBufAllocator. newHandle()RecvByteBufAllocator.HandleDefaultMaxBytesRecvByteBufAllocator. newHandle()RecvByteBufAllocator.HandleFixedRecvByteBufAllocator. newHandle()RecvByteBufAllocator.HandleRecvByteBufAllocator. newHandle()Creates a new handle.RecvByteBufAllocator.HandleServerChannelRecvByteBufAllocator. newHandle()RecvByteBufAllocator.HandleAbstractChannel.AbstractUnsafe. recvBufAllocHandle()RecvByteBufAllocator.HandleChannel.Unsafe. recvBufAllocHandle()Return the assignedRecvByteBufAllocator.Handlewhich will be used to allocateByteBuf's when receiving data.Constructors in io.netty.channel with parameters of type RecvByteBufAllocator.Handle Constructor Description DelegatingHandle(RecvByteBufAllocator.Handle delegate) -
Uses of RecvByteBufAllocator.Handle in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement RecvByteBufAllocator.Handle Modifier and Type Class Description (package private) classEpollRecvByteAllocatorHandle(package private) classEpollRecvByteAllocatorStreamingHandleMethods in io.netty.channel.epoll with parameters of type RecvByteBufAllocator.Handle Modifier and Type Method Description booleanAbstractEpollStreamChannel.SpliceFdTask. spliceIn(RecvByteBufAllocator.Handle handle)booleanAbstractEpollStreamChannel.SpliceInChannelTask. spliceIn(RecvByteBufAllocator.Handle handle)(package private) abstract booleanAbstractEpollStreamChannel.SpliceInTask. spliceIn(RecvByteBufAllocator.Handle handle)protected intAbstractEpollStreamChannel.SpliceInTask. spliceIn(FileDescriptor pipeOut, RecvByteBufAllocator.Handle handle) -
Uses of RecvByteBufAllocator.Handle in io.netty.channel.kqueue
Classes in io.netty.channel.kqueue that implement RecvByteBufAllocator.Handle Modifier and Type Class Description (package private) classKQueueRecvByteAllocatorHandle -
Uses of RecvByteBufAllocator.Handle in io.netty.channel.nio
Methods in io.netty.channel.nio with parameters of type RecvByteBufAllocator.Handle Modifier and Type Method Description protected booleanAbstractNioMessageChannel. continueReading(RecvByteBufAllocator.Handle allocHandle)private voidAbstractNioByteChannel.NioByteUnsafe. handleReadException(ChannelPipeline pipeline, ByteBuf byteBuf, java.lang.Throwable cause, boolean close, RecvByteBufAllocator.Handle allocHandle) -
Uses of RecvByteBufAllocator.Handle in io.netty.channel.oio
Methods in io.netty.channel.oio with parameters of type RecvByteBufAllocator.Handle Modifier and Type Method Description private voidAbstractOioByteChannel. handleReadException(ChannelPipeline pipeline, ByteBuf byteBuf, java.lang.Throwable cause, boolean close, RecvByteBufAllocator.Handle allocHandle)Deprecated. -
Uses of RecvByteBufAllocator.Handle in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio with parameters of type RecvByteBufAllocator.Handle Modifier and Type Method Description protected booleanNioDatagramChannel. continueReading(RecvByteBufAllocator.Handle allocHandle) -
Uses of RecvByteBufAllocator.Handle in io.netty.handler.codec.http2
Fields in io.netty.handler.codec.http2 declared as RecvByteBufAllocator.Handle Modifier and Type Field Description private RecvByteBufAllocator.HandleAbstractHttp2StreamChannel.Http2ChannelUnsafe. recvHandleMethods in io.netty.handler.codec.http2 that return RecvByteBufAllocator.Handle Modifier and Type Method Description RecvByteBufAllocator.HandleAbstractHttp2StreamChannel.Http2ChannelUnsafe. recvBufAllocHandle()Methods in io.netty.handler.codec.http2 with parameters of type RecvByteBufAllocator.Handle Modifier and Type Method Description (package private) voidAbstractHttp2StreamChannel.Http2ChannelUnsafe. doRead0(Http2Frame frame, RecvByteBufAllocator.Handle allocHandle)(package private) voidAbstractHttp2StreamChannel.Http2ChannelUnsafe. notifyReadComplete(RecvByteBufAllocator.Handle allocHandle, boolean forceReadComplete, boolean inReadLoop)
-