All Downloads are FREE. Search and download functionalities are using the official Maven repository.

redis.netty4.IRedisDecoderState Maven / Gradle / Ivy

The newest version!
package redis.netty4;

import io.netty.buffer.ByteBuf;

import java.io.IOException;

public interface IRedisDecoderState {

  void decode(ByteBuf in) throws IOException;

  Reply getDecodedReply();

  IRedisDecoderState getNextState();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy