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

io.zeebe.redis.exporter.RedisEvent Maven / Gradle / Ivy

package io.zeebe.redis.exporter;

public class RedisEvent {

  String stream;
  long key;
  Object value;
  int memorySize;

  public RedisEvent(String stream, long key, Object value, int memorySize) {
    this.stream = stream;
    this.key = key;
    this.value = value;
    this.memorySize = memorySize;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy