Interface VoidCallable

All Superinterfaces:
Callable<Void>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface VoidCallable extends Callable<Void>
Author:
Vlad Mihalcea
  • Method Summary

    Modifier and Type
    Method
    Description
    default Void
     
    void
     
  • Method Details

    • execute

      void execute()
    • call

      default Void call()
      Specified by:
      call in interface Callable<Void>