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

tech.ydb.yoj.repository.db.projection.ProjectionCache 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.projection;


import tech.ydb.yoj.repository.db.Entity;
import tech.ydb.yoj.repository.db.RepositoryTransaction;

public interface ProjectionCache {
    void load(Entity entity);

    void save(Entity entity);

    void delete(Entity.Id id);

    void applyProjectionChanges(RepositoryTransaction transaction);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy