io.leoplatform.sdk.bus.ChangeLoadingBot 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 ChangeLoadingBot implements LoadingBot {
private static final String NAME = "SchemaChangeDetection";
private static final StreamQueue CHANGES_QUEUE = new SimpleQueue("SchemaChanges");
@Override
public String name() {
return NAME;
}
@Override
public StreamQueue destination() {
return CHANGES_QUEUE;
}
@Override
public String toString() {
return String.format("ChangeLoadingBot{name='%s', destination='%s'}", NAME, CHANGES_QUEUE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy