org.babyfish.jimmer.sql.runtime.MicroServiceExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql Show documentation
Show all versions of jimmer-sql Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql.runtime;
import org.babyfish.jimmer.meta.ImmutableProp;
import org.babyfish.jimmer.runtime.ImmutableSpi;
import org.babyfish.jimmer.sql.ast.tuple.Tuple2;
import org.babyfish.jimmer.sql.fetcher.Fetcher;
import java.util.Collection;
import java.util.List;
public interface MicroServiceExchange {
List findByIds(
String microServiceName,
Collection> ids,
Fetcher> fetcher
) throws Exception;
List> findByAssociatedIds(
String microServiceName,
ImmutableProp prop,
Collection> targetIds,
Fetcher> fetcher
) throws Exception;
}