main
1using System;
2using gorilla.commons.utility;
3
4namespace gorilla.commons.infrastructure.threading
5{
6 public interface CommandProcessor : Command
7 {
8 void add(Action command);
9 void add(Command command_to_process);
10 void stop();
11 }
12}