IWorker.cs 337 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace App.Robot.Station.Logical.Worker
  5. {
  6. public interface IWorker
  7. {
  8. int RunningThreadCount { get; }
  9. bool IsRunning { get; }
  10. //TaskConfig config { get; }
  11. void Start();
  12. void Stop();
  13. }
  14. }