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

org.fiolino.common.processing.sink.ThreadsafeSink 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;

import javax.annotation.concurrent.ThreadSafe;

/**
 * A sink that is marked as being thread safe.
 * 

* Even for thread safe sinks, the caller must make sure that after finished() is being * called, no other thread is continuing to call accept(). *

* Created by kuli on 31.03.16. */ @ThreadSafe public interface ThreadsafeSink extends Sink { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy