diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-10-24 16:18:39 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-10-24 16:18:39 +0300 |
| commit | 1e24679bf65e42e5df96113bd1eef371036f0940 (patch) | |
| tree | bb954219f7f5ec0f6e37631cae2c6aa0ac9d184b /Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs | |
| parent | a4f4b3be2917b13667217cf826c21e8bd644a8c4 (diff) | |
| download | Tango-1e24679bf65e42e5df96113bd1eef371036f0940.tar.gz Tango-1e24679bf65e42e5df96113bd1eef371036f0940.zip | |
Implemented job resume!!
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs b/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs index e76057d2f..58c2f32f0 100644 --- a/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs +++ b/Software/Visual_Studio/Tango.Integration/Operation/IMachineOperator.cs @@ -80,6 +80,11 @@ namespace Tango.Integration.Operation event EventHandler<PrintingEventArgs> PrintingCompleted; /// <summary> + /// Occurs when the machine operator has detected that a job is in progress after connecting to the machine. + /// </summary> + event EventHandler<ResumingJobEventArgs> ResumingJob; + + /// <summary> /// Occurs when a request has been sent. /// </summary> event EventHandler<IMessage> RequestSent; @@ -130,6 +135,11 @@ namespace Tango.Integration.Operation bool EnableEmbeddedDebugging { get; set; } /// <summary> + /// Gets or sets a value indicating whether to check whether a job is in progress after connection was successful. + /// </summary> + bool EnableJobResume { get; set; } + + /// <summary> /// Gets the last process parameters table sent to the embedded device. /// </summary> ProcessParametersTable CurrentProcessParameters { get; } |
