org.enodeframework.domain.IAggregateRepositoryProxy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.domain;
import org.enodeframework.infrastructure.IObjectProxy;
import java.util.concurrent.CompletableFuture;
public interface IAggregateRepositoryProxy extends IObjectProxy {
CompletableFuture getAsync(String aggregateRootId);
}