io.datakernel.crdt.primitives.CrdtExtractable 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;
import org.jetbrains.annotations.Nullable;
public interface CrdtExtractable> {
@Nullable
S extract(long timestamp);
}