io.leoplatform.sdk.changes.LeoChangesPayload 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.changes;
import io.leoplatform.schema.ChangeEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.inject.Singleton;
import java.util.concurrent.BlockingQueue;
@Singleton
public class LeoChangesPayload implements ChangeReactor {
private static final Logger log = LoggerFactory.getLogger(LeoChangesPayload.class);
@Override
public void loadChanges(BlockingQueue changes) {
log.warn("Using unimplemented change payload");
throw new IllegalStateException("Unimplemented change reactor");
//TODO: Transform this to the LEO-standard change listener payload
}
@Override
public void end() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy