play.mvc.Http.RequestHeader.accept()
|
play.libs.Akka.asPromise(Future)
|
play.mvc.Results.async(F.Promise)
Return Promise<Result> from your action instead
|
play.mvc.Results.badRequest(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.mvc.Results.created(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.mvc.Http.Response.discardCookies(String...)
Use the discardCookie methods instead
|
play.mvc.Results.forbidden(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.libs.Akka.future(Callable)
Since 2.2. Use Promise#promise(Function0) instead.
|
play.libs.F.Promise.get()
|
play.libs.F.Promise.get(Long)
|
play.libs.F.Promise.get(Long, TimeUnit)
|
play.libs.F.Promise.getWrappedPromise()
|
play.mvc.Results.internalServerError(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.mvc.Results.notFound(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.mvc.Results.ok(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.test.Helpers.routeAndCall(Class extends Router.Routes>, FakeRequest) |
play.test.Helpers.routeAndCall(FakeRequest) |
play.libs.F.Promise.timeout()
|
play.libs.F.Promise.timeout(A, Long)
|
play.libs.F.Promise.timeout(A, Long, TimeUnit)
|
play.libs.Akka.timeout(Callable, Long, TimeUnit)
Since 2.2. Use Promise#delayed(Function0,long,TimeUnit) instead.
|
play.mvc.Results.unauthorized(File, int)
Since the length of the file is known, there is little reason to send a file as chunked.
|
play.libs.F.Promise.waitAll(F.Promise extends A>...)
Since 2.1. Use #sequence(Promise...) instead.
|
play.libs.F.Promise.waitAll(Iterable>)
|