Package akka.pattern
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description scala.concurrent.Future<T>
future()
Future associated with this FutureRef.ActorRef
ref()
ActorRef associated with this FutureRef.
-