
delight.concurrency.wrappers.WhenExecutorShutDown Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-concurrency Show documentation
Show all versions of delight-concurrency Show documentation
An abstract and lightweight definition of concurrency fundamentals.
The newest version!
package delight.concurrency.wrappers;
import delight.async.callbacks.SimpleCallback;
/**
* Use {@link SimpleCallback} instead.
*
* @author Max Rohde
*
*/
@Deprecated
public interface WhenExecutorShutDown extends SimpleCallback {
/**
* Called when no threads spawned by this executor run anymore.
*/
@Override
public void onSuccess();
@Override
public void onFailure(Throwable t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy