main
1using System;
2using System.Linq.Expressions;
3using gorilla.commons.utility;
4
5namespace MoMoney.Service.Infrastructure.Threading
6{
7 public interface CommandProcessor : Command
8 {
9 void add(Expression<Action> action_to_process);
10 void add(Command command_to_process);
11 void stop();
12 }
13}