12345678910111213141516171819202122232425262728293031323334353637 |
- namespace App.Robot.Station.Logical.Model
- {
- public class TaskConfig
- {
- public string name="taskName";
- public string apiRoute;
- public string apiArg;
- public string httpMethod;
- /// <summary>
- /// (为http时有效)是否使用HttpUtil。默认使用HttpClient
- /// </summary>
- public bool httpUseHttpUtil;
- public int threadCount=1;
- public int loopCountPerThread=2000;
-
- /// <summary>
- /// 每次调用时间间隔。(单位:ms)
- /// </summary>
- public int interval = 100;
- public bool autoStart = true;
- /// <summary>
- /// 失败时是否控制台输出
- /// </summary>
- public bool logError = false;
- }
- }
|