Schnittstelle IResultFuture<R>

Typparameter:
R - is the type of the result of a IResultFuture.
Alle Superschnittstellen:
FinishRequestable, IFuture
Alle bekannten Implementierungsklassen:
ResultFuture

public interface IResultFuture<R> extends IFuture
A IResultFuture is a IFuture that will deliver a result when it is finished.
Version:
2019-04-14
Autor:
Silvan Wyss
  • Methodendetails

    • getResult

      R getResult()
      Gibt zurück:
      the result of the current IResultFuture.
    • waitUntilIsFinishedAndGetResult

      R waitUntilIsFinishedAndGetResult()
      Waits until the current IResultFuture is finished and returns its result.
      Gibt zurück:
      the result of the current IResultFuture after waiting until it is finished.