package it.cavallium.dbengine.database; import org.jetbrains.annotations.Nullable; import reactor.core.publisher.Mono; public interface LLSingleton extends LLKeyValueDatabaseStructure { Mono get(@Nullable LLSnapshot snapshot); Mono set(byte[] value); }