Uses of Class
io.netty.handler.codec.redis.RedisMessageType
-
Packages that use RedisMessageType Package Description io.netty.handler.codec.redis Encoder, decoder for Redis. -
-
Uses of RedisMessageType in io.netty.handler.codec.redis
Fields in io.netty.handler.codec.redis declared as RedisMessageType Modifier and Type Field Description private RedisMessageType
RedisDecoder. type
Methods in io.netty.handler.codec.redis that return RedisMessageType Modifier and Type Method Description static RedisMessageType
RedisMessageType. readFrom(ByteBuf in, boolean decodeInlineCommands)
DetermineRedisMessageType
based on the type prefixbyte
read from given the buffer.private static RedisMessageType
RedisMessageType. valueOf(byte value)
Returns the enum constant of this type with the specified name.static RedisMessageType
RedisMessageType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RedisMessageType[]
RedisMessageType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.redis with parameters of type RedisMessageType Modifier and Type Method Description private RedisMessage
RedisDecoder. newInlineRedisMessage(RedisMessageType messageType, ByteBuf content)
private static void
RedisEncoder. writeString(ByteBufAllocator allocator, RedisMessageType type, java.lang.String content, java.util.List<java.lang.Object> out)
-