IStateService.cs 289 B

12345678910
  1. using StatementMachineService.Service;
  2. namespace StatementMachineService.Core
  3. {
  4. public interface IStateService
  5. {
  6. void CreateMachine(int id, StateEventHandler upAsyncCallback, StateEventHandler downAsyncCallback);
  7. void ExecuteState(int id, ushort state);
  8. }
  9. }