io.leoplatform.sdk.ExternalExecutorPlatform Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leo-api Show documentation
Show all versions of leo-api Show documentation
SDK for LEO Insights platform
The newest version!
package io.leoplatform.sdk;
import dagger.BindsInstance;
import dagger.Component;
import javax.inject.Named;
import javax.inject.Singleton;
import java.util.concurrent.Executor;
@Singleton
@Component(modules = {SDKModule.class})
public interface ExternalExecutorPlatform extends SDKPlatform {
@Component.Builder
interface Builder {
@BindsInstance
Builder executor(Executor executor);
ExternalExecutorPlatform build();
}
@Named("ExternalExecutor")
ExecutorManager executorManager();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy