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

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

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

import net.intelie.pipes.time.SchedulerContext;

public interface PipeInstance {
    void flow(Object obj);

    void flowMany(Iterable iterable);

    void turnOn(SchedulerContext context);

    void advanceTo(long timestamp);

    void destroy(boolean flushTimers);

    void destroy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy