io.datakernel.crdt.primitives.CrdtMergable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-crdt Show documentation
Show all versions of datakernel-crdt Show documentation
Conflict-free replicated data type implementation for DataKernel Framework.
package io.datakernel.crdt.primitives;
public interface CrdtMergable> {
S merge(S other);
}