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

redis.reply.Reply Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package redis.reply;

import java.io.IOException;
import java.io.OutputStream;

import redis.RedisProtocol;

/**
* Replies.
* User: sam
* Date: 7/27/11
* Time: 3:04 PM
* To change this template use File | Settings | File Templates.
*/
public interface Reply {
  byte[] CRLF = new byte[] { RedisProtocol.CR, RedisProtocol.LF };

  T data();
  void write(OutputStream os) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy