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

tech.ydb.yoj.repository.test.sample.TestDbImpl Maven / Gradle / Ivy

The newest version!
package tech.ydb.yoj.repository.test.sample;

import lombok.experimental.Delegate;
import tech.ydb.yoj.repository.db.Repository;
import tech.ydb.yoj.repository.db.StdTxManager;
import tech.ydb.yoj.repository.db.Tx;
import tech.ydb.yoj.repository.db.TxManager;

public class TestDbImpl implements TestDb {
    @Delegate
    private final TxManager txManagerImpl;

    public TestDbImpl(R repository) {
        txManagerImpl = new StdTxManager(repository)
                .withLogStatementOnSuccess(true);
    }

    @Delegate
    protected TestEntityOperations db() {
        return (TestEntityOperations) Tx.Current.get().getRepositoryTransaction();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy