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