tech.ydb.yoj.repository.db.TxManagerState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoj-repository Show documentation
Show all versions of yoj-repository Show documentation
Core YOJ (YDB ORM for Java) abstractions and APIs for domain entities, repositories, transactions etc.
package tech.ydb.yoj.repository.db;
import lombok.NonNull;
import javax.annotation.Nullable;
public interface TxManagerState {
@NonNull
Repository getRepository();
@Nullable
String getLogContext();
@Nullable
IsolationLevel getIsolationLevel();
boolean isReadOnly();
boolean isScan();
boolean isFirstLevelCache();
}