1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace App.Robot.Station.Logical.Worker
- {
- public interface IWorker
- {
- int RunningThreadCount { get; }
- bool IsRunning { get; }
- //TaskConfig config { get; }
- void Start();
- void Stop();
- }
- }
|