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

org.fiolino.common.processing.sink.StoppableSink Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.processing.sink;

/**
 * Created by micro on 5/30/2016.
 */
public interface StoppableSink extends Sink {
    /**
     * Stops the sink, so that all running threads (if any) are being stopped.
     * 

* This sink won't accept any input thereafter. */ void stop() throws InterruptedException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy