
redis.reply.IntegerReply Maven / Gradle / Ivy
package redis.reply;
/**
* Created by IntelliJ IDEA.
* User: sam
* Date: 7/29/11
* Time: 10:23 AM
* To change this template use File | Settings | File Templates.
*/
public class IntegerReply implements Reply {
public static final char MARKER = ':';
private final long integer;
public IntegerReply(long integer) {
this.integer = integer;
}
@Override
public Long data() {
return integer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy