public void onSuccess(User result) {
long end2 = System.currentTimeMillis();
Log.debug("async: " + (end2 - start2) / 1000.0);
long start3 = System.currentTimeMillis();
myPage.load(result);
long end3 = System.currentTimeMillis();
Log.debug("load: " + (end3 - start3) / 1000.0);
}
});