Interface Callable<V>

  • 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 Callable<V>
    NOTE: Please don't use this class directly as it is part of the internal API. Class name and methods can be changed any time.
    Author:
    Hakan Altindag
    • Method Detail

      • call

        V call()