io.leoplatform.sdk.bus.Bots 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.bus;
public final class Bots {
public static LoadingBot ofLoading(String name, String destination) {
return new SimpleLoadingBot(name, new SimpleQueue(destination));
}
public static OffloadingBot ofOffloading(String name, String source) {
return new SimpleOffloadingBot(name, new SimpleQueue(source));
}
public static LoadingBot ofChanges() {
return new ChangeLoadingBot();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy