Пример #1
0
 public void printCacheState(CellRegion region, PrintWriter pw, Locus locus) {
   ACTOR.execute(handler, new PrintCacheStateCommand(region, pw, locus));
 }
Пример #2
0
 private Object execute(Command command) {
   return ACTOR.execute(handler, command);
 }
Пример #3
0
 public <T> T execute(Command<T> command) {
   return ACTOR.execute(handler, command);
 }