玩!框架等待响应

时间:2013-12-04 17:33:34

标签: java asynchronous playframework-2.0

首先,我想强调一点,我是新手!框架。 我应该做的是将之前编写的扑克游戏转换为在控制台中工作,以使用基于Play Framework的GUI。 我的问题是,到现在为止我有类似的事情:

System.out.println("What's your name");
name = input.nextLine(); //input was initialized as: new Scanner(System.in)

这意味着,该用户被问及某些事情,然后我们等待响应,并在提供答案时发生更多事情(例如将名称发送到服务器)。

为了提供这样的功能,我写了类:

public class Printer {
    public static void print(String str) {
        if (Player.isGUIModeOn()) {

        }
        else {
            ConsolePrinter.println(str);
        }
    }

    public static String prompt(String str) {
        String out = "";
        if (Player.isGUIModeOn()) {

        }
        else {
            out = ConsolePrinter.prompt(str);
        }
        return out;
    }
}

但我并不知道如何实现这个与提示用户提供一些数据相关的部分,包括如何异步更改部分显示的网站(打印)以及等待它(站点)响应。 我的问题是我应该使用和/或阅读哪些技术来实现这些功能。我们随时欢迎使用示例和代码。

我必须使用Play!框架v2

0 个答案:

没有答案