--
You received this message because you are subscribed to the Google Groups "play-framework" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/play-framework?hl=en.
Sebastien Cesbron wrote:
> Hi
>
> Send method returns a Future so If you do
>
> Future<Boolean> future = send(...);
> Boolean result = future.get(); // Here you wait for the execution
just use sendAndWait() method instead of send()
--Alexander