Uses of Interface
io.netty.handler.codec.redis.RedisMessage
-
Packages that use RedisMessage Package Description io.netty.handler.codec.redis Encoder, decoder for Redis. -
-
Uses of RedisMessage in io.netty.handler.codec.redis
Subinterfaces of RedisMessage in io.netty.handler.codec.redis Modifier and Type Interface Description interface
BulkStringRedisContent
A chunk of bulk strings which is used for Redis chunked transfer-encoding.interface
LastBulkStringRedisContent
A last chunk of Bulk Strings.Classes in io.netty.handler.codec.redis that implement RedisMessage Modifier and Type Class Description class
AbstractStringRedisMessage
Abstract class for Simple Strings or Errors.class
ArrayHeaderRedisMessage
Header of Redis Array Message.class
ArrayRedisMessage
Arrays of RESP.class
BulkStringHeaderRedisMessage
The header of Bulk Strings in RESP.class
DefaultBulkStringRedisContent
A default implementation ofBulkStringRedisContent
.class
DefaultLastBulkStringRedisContent
A default implementation forLastBulkStringRedisContent
.class
ErrorRedisMessage
Errors of RESP.class
FullBulkStringRedisMessage
An aggregated bulk string of RESP.class
InlineCommandRedisMessage
Inline commands of RESP.class
IntegerRedisMessage
Integers of RESP.class
SimpleStringRedisMessage
Simple Strings of RESP.Methods in io.netty.handler.codec.redis that return types with arguments of type RedisMessage Modifier and Type Method Description java.util.List<RedisMessage>
ArrayRedisMessage. children()
Get children of this Arrays.Methods in io.netty.handler.codec.redis with parameters of type RedisMessage Modifier and Type Method Description protected void
RedisArrayAggregator. decode(ChannelHandlerContext ctx, RedisMessage msg, java.util.List<java.lang.Object> out)
protected void
RedisEncoder. encode(ChannelHandlerContext ctx, RedisMessage msg, java.util.List<java.lang.Object> out)
protected boolean
RedisBulkStringAggregator. isAggregated(RedisMessage msg)
protected boolean
RedisBulkStringAggregator. isContentMessage(RedisMessage msg)
protected boolean
RedisBulkStringAggregator. isStartMessage(RedisMessage msg)
Constructor parameters in io.netty.handler.codec.redis with type arguments of type RedisMessage Constructor Description ArrayRedisMessage(java.util.List<RedisMessage> children)
Creates aArrayRedisMessage
for the givencontent
.
-