io.continual.flowcontrol.jobapi.FlowControlJobConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of continualFlowControl Show documentation
Show all versions of continualFlowControl Show documentation
Continual's flow control system for event processing.
The newest version!
package io.continual.flowcontrol.jobapi;
import java.io.InputStream;
public interface FlowControlJobConfig
{
/**
* Get the configuration data type
* @return a MIME data type
*/
String getDataType ();
/**
* Return a stream of configuration data.
* @return an input stream for this configuration
*/
InputStream readConfiguration ();
}