akka.pattern
Interface FutureTimeoutSupport


public interface FutureTimeoutSupport

Copyright (C) 2009-2014 Typesafe Inc.


Method Summary
<T> scala.concurrent.Future<T>
after(scala.concurrent.duration.FiniteDuration duration, Scheduler using, scala.Function0<scala.concurrent.Future<T>> value, scala.concurrent.ExecutionContext ec)
          Returns a Future that will be completed with the success or failure of the provided value after the specified duration.
 

Method Detail

after

<T> scala.concurrent.Future<T> after(scala.concurrent.duration.FiniteDuration duration,
                                     Scheduler using,
                                     scala.Function0<scala.concurrent.Future<T>> value,
                                     scala.concurrent.ExecutionContext ec)
Returns a Future that will be completed with the success or failure of the provided value after the specified duration.

Parameters:
duration - (undocumented)
using - (undocumented)
value - (undocumented)
ec - (undocumented)
Returns:
(undocumented)