io.activej.etcd.codec.kv.KeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-etcd Show documentation
Show all versions of activej-etcd Show documentation
Etcd Codecs, and transactional support for ActiveJ project.
The newest version!
package io.activej.etcd.codec.kv;
import io.etcd.jetcd.ByteSequence;
public record KeyValue(ByteSequence key, ByteSequence value) {
}