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

redis.clients.jedis.util.LazyRawable Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis.util;

import redis.clients.jedis.args.Rawable;

public class LazyRawable implements Rawable {

  private byte[] raw = null;

  public void setRaw(byte[] raw) {
    this.raw = raw;
  }

  @Override
  public byte[] getRaw() {
    return raw;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy