tech.ydb.coordination.SemaphoreLease Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-coordination Show documentation
Show all versions of ydb-sdk-coordination Show documentation
Coordination node client implementation
package tech.ydb.coordination;
import java.util.concurrent.CompletableFuture;
/**
* @author Aleksandr Gorshenin
*/
public interface SemaphoreLease {
String getSemaphoreName();
CoordinationSession getSession();
CompletableFuture release();
}