Like DelayedFuture {...}, but does not construct a future.
Like DelayedFuture {...}, but does not construct a future.
Attributes
Note
code is rejected if it has type Runnable or Callable because it's probably a mistake: ExecuteAfter(...)(code) was written when ExecuteAfter(...)(code.run()) or ExecuteAfter(...)(code.call()) was intended. In the unlikely case that ExecuteAfter(...)(code) was desired, add a type ascription: ExecuteAfter(...)(code: AnyRef).