Interface FutureRef<T>


public interface FutureRef<T>
A combination of a Future and an ActorRef associated with it, which points to an actor performing a task which will eventually resolve the Future.
  • Method Summary

    Modifier and Type
    Method
    Description
    scala.concurrent.Future<T>
    Future associated with this FutureRef.
    ref()
    ActorRef associated with this FutureRef.
  • Method Details

    • ref

      ActorRef ref()
      ActorRef associated with this FutureRef.
    • future

      scala.concurrent.Future<T> future()
      Future associated with this FutureRef.