com.castle.concurrent.executor.ActionExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castle Show documentation
Show all versions of castle Show documentation
A generic utility library
package com.castle.concurrent.executor;
import java.util.concurrent.Future;
public interface ActionExecutor {
Future> execute(Action action);
}