123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Aitex.Core.RT.Routine;
- namespace MECF.Framework.RT.ModuleLibrary.SystemModules.Routines
- {
- public interface IAutoTransfer : IRoutine
- {
- bool CheckAllJobDone();
- bool IsCJExisted(string cjid);
- bool HasJobRunning { get; }
- bool CreateJob(Dictionary<string, object> namedParameter);
- void AbortJob(string cjName);
- void StopJob(string cjName);
- void ResumeJob(string cjName);
- void PauseJob(string cjName);
- bool StartJob(string cjName);
- void Clear();
- void ModuleError(string moduleName);
- void Map(string lpName);
- }
- }
|