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