All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.yoj.repository.db.TxManagerState Maven / Gradle / Ivy

Go to download

Core YOJ (YDB ORM for Java) abstractions and APIs for domain entities, repositories, transactions etc.

The newest version!
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy