Uses of Class
io.netty5.handler.adaptor.BufferConversionHandler.Conversion
-
Packages that use BufferConversionHandler.Conversion Package Description io.netty5.handler.adaptor This package contains a handler that can convertByteBufinstances intoBuffer, and vice versa. -
-
Uses of BufferConversionHandler.Conversion in io.netty5.handler.adaptor
Methods in io.netty5.handler.adaptor that return BufferConversionHandler.Conversion Modifier and Type Method Description abstract BufferConversionHandler.ConversionBufferConversionHandler.Conversion. invert()Return aBufferConversionHandler.Conversionthat is the inverse of this one.static BufferConversionHandler.ConversionBufferConversionHandler.Conversion. valueOf(String name)Returns the enum constant of this type with the specified name.static BufferConversionHandler.Conversion[]BufferConversionHandler.Conversion. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.netty5.handler.adaptor with parameters of type BufferConversionHandler.Conversion Constructor Description BufferConversionHandler(BufferConversionHandler.Conversion conversion)Deprecated.Create a conversion handler where incoming reads are passed through the given conversion, and outgoing writes are passed through its inverse.BufferConversionHandler(BufferConversionHandler.Conversion onRead, BufferConversionHandler.Conversion onWrite)Deprecated.Create a conversion handler where incoming reads, and outgoing writes, are passed through their configured conversions.BufferConversionHandler(BufferConversionHandler.Conversion onRead, BufferConversionHandler.Conversion onWrite, BufferConversionHandler.Conversion onUserEvent)Deprecated.Create a conversion handler where incoming reads, outgoing writes, and user events, are passed through their configured conversions.
-