All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.pipes.Valve Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes;

import net.intelie.pipes.filters.Filter;
import net.intelie.pipes.time.SchedulerContext;
import net.intelie.pipes.types.Metadata;

public interface Valve {
    Filter filter();

    Pipe pipe();

    PipeInstance instance();

    Metadata metadata();

    void flowUnfiltered(Object obj);

    void flowManyUnfiltered(Iterable iterable);

    void turnOn();

    void turnOn(SchedulerContext context);

    void advanceTo(long time);

    boolean dettach();

    boolean destroy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy