Exemplo n.º 1
0
 public void printCacheState(CellRegion region, PrintWriter pw, Locus locus) {
   ACTOR.execute(handler, new PrintCacheStateCommand(region, pw, locus));
 }
Exemplo n.º 2
0
 private Object execute(Command command) {
   return ACTOR.execute(handler, command);
 }
Exemplo n.º 3
0
 public <T> T execute(Command<T> command) {
   return ACTOR.execute(handler, command);
 }