In the play application when a request comes in, I need to generate response latter time. During that time my thread won't wait or sleep. This is my sample code.
When i call index() method. The request comes in and call the registerListener(). This method is a return type method (it is a return Promise of Double value). When it calls call() method, it checks boolean flag, the boolean flag is true then return 3.14, if it is false then return null.
My condition is started here. This method should wait until then boolean flag is true. when i call changeValue() method it happens (boolean flag value is changed from false to true). Here I need to be check every 10 seconds once if boolean value is true or not. if it is true then i redirect index() method,if it is false then that old process continue. Here i call my index() method is twice that reason i get two result :
- The first result is PI value computed: null.
- The second result is PI value computed: 3.14.
Here my problem is that I need to call my index() method only once. It should return 3.14. I don't known where i made a mistake. Any suggestion is welcome.
This is my controller file:
static boolean checkflag = false;
static Double dataValue = 0.0;
static Cancellable timerCall = null;
static Thread tt;
static Thread ttt;
static Promise<Result> promiseOfPIValue1 = null;
public static Result index() {
Promise<Double> promiseOfPIValue = registerListener();
System.out.println("initial value :"+promiseOfPIValue.get());
Promise<Result> promiseOfResult = null;
if(promiseOfPIValue != null)
{
promiseOfResult = promiseOfPIValue.map(
new Function<Double,Result>()
{
public Result apply(Double pi) throws Throwable {
{
System.out.println("PI value computed: " + pi);
return ok("PI value computed: " + pi);
}
}
}
);
timerCall.cancel();
checkflag = false;
}
//return ok(index.render("Your new application is ready."));
return Results.async(promiseOfResult);
}
private static Promise<Double> registerListener() {
// TODO Auto-generated method stub
System.out.println("Listener boolean value :"+checkflag);
Promise<Double> pd = Akka.future(
new Callable<Double>()
{
public Double call()
{
if (checkflag)
{
dataValue = 3.14;
return dataValue;
}
else
{
dataValue = null;
return dataValue;
}
}
}
);
if(dataValue == null)
{
pd = null;
System.out.println(Thread.currentThread().hashCode());
//ping();
timerCall = Akka.system().scheduler().schedule(
Duration.create(0, TimeUnit.MILLISECONDS),
Duration.create(10, TimeUnit.SECONDS),
new Runnable() {
public void run()
{
System.out.println(Thread.currentThread().hashCode());
System.out.println("Scheduler is calling ...");
if(ping())
{
index();
}
}
});
}
return pd;
}
private static boolean ping() {
// TODO Auto-generated method stub
System.out.println("ping boolean value :"+checkflag);
{
if (checkflag)
{
timerCall.cancel();
return true;
}
else
{
return false;
}
}
}
public static Result changeValue()
{
checkflag = true;
return ok("getit");
}
This is my out :
PI value computed: null
when i run this method changeValue();
PI value computed: 3.14
here is a list of return type method.
1. index ()
2. registerListener()
3. ping()
4. changeValue()