web-dev-qa-db-fra.com

interface fonctionnelle qui ne prend rien et ne retourne rien

Existe-t-il une interface fonctionnelle standard dans le JDK qui ne prend rien et ne retourne rien? Je ne peux pas en trouver un. Quelque chose comme ce qui suit:

@FunctionalInterface
interface Action {
  void execute();
}
113
deamon

Que diriez-vous de Runnable:

@FunctionalInterface
public interface Runnable {
    /**
     * When an object implementing interface <code>Runnable</code> is used
     * to create a thread, starting the thread causes the object's
     * <code>run</code> method to be called in that separately executing
     * thread.
     * <p>
     * The general contract of the method <code>run</code> is that it may
     * take any action whatsoever.
     *
     * @see     Java.lang.Thread#run()
     */
    public abstract void run();
}
159
Eran