summaryrefslogtreecommitdiff
path: root/lib/infrastructure/threading/CommandProcessor.cs
blob: 35f81ff292da4bdac090be168ebabf722aee3237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using jive.utility;

namespace jive.infrastructure.threading
{
  public interface CommandProcessor : Command
  {
    void add(Action command);
    void add(Command command_to_process);
    void stop();
  }
}