Ejemplo n.º 1
0
 @Get("json")
 public String getTable() {
   GatherModule gather =
       (GatherModule) getContext().getAttributes().get(IGatherService.class.getCanonicalName());
   gather.asynCall(1, new TimeoutRun(gather));
   return "";
 }
Ejemplo n.º 2
0
 @Override
 public void run() {
   logger.info("first run");
   gather.asynCall(
       1,
       new Runnable() {
         public void run() {
           logger.info("second run");
         }
       });
 }