io.rtdi.bigdata.connector.pipeline.foundation.IControllerState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pipelinefoundation Show documentation
Show all versions of pipelinefoundation Show documentation
The abstraction of an Apache Kafka-like Pipeline and common classes/interfaces.
package io.rtdi.bigdata.connector.pipeline.foundation;
import io.rtdi.bigdata.connector.pipeline.foundation.enums.ControllerState;
public interface IControllerState {
/**
* @return ControllerState of the controller to know if it is running, stopped etc
*/
ControllerState getState();
/**
* @return true if the controller should continue running, false in case a stop was requested
*/
boolean isRunning();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy