com.jetdrone.vertx.mods.redis.command.KeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mod-redis-io Show documentation
Show all versions of mod-redis-io Show documentation
Asynchronous REDIS bus module for Vert.x
The newest version!
package com.jetdrone.vertx.mods.redis.command;
public final class KeyValue {
public final String keyName;
public final String valueName;
public final String pairName;
public KeyValue(String keyName, String valueName, String pairName) {
this.keyName = keyName;
this.valueName = valueName;
this.pairName = pairName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy