Package play.utils

Examples of play.utils.ImmediateFuture


            }

        } catch (Exception e) {
            Logger.error(e, "error sending mock email");
        }
        return new ImmediateFuture();
    }
View Full Code Here


    public Email receivedEmail = null;

    @Override
    public Future<Boolean> sendMessage(Email email) {
      receivedEmail = email;
      return new ImmediateFuture();
    }
View Full Code Here

TOP

Related Classes of play.utils.ImmediateFuture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.