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

org.babyfish.jimmer.sql.runtime.MicroServiceExchange Maven / Gradle / Ivy

There is a newer version: 0.9.19
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy