diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-09-10 14:30:00 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-09-10 14:30:00 +0300 |
| commit | 9e4a2eb24ad1882cee1cc9d43f0af0faff2ba861 (patch) | |
| tree | 553b88553729097418a697c628b8b8046e34cdd9 /Software/Visual_Studio/Tango.Emulations | |
| parent | 8e0ac4d5d4f097753321d64d3ca2d47b2f6b3770 (diff) | |
| download | Tango-9e4a2eb24ad1882cee1cc9d43f0af0faff2ba861.tar.gz Tango-9e4a2eb24ad1882cee1cc9d43f0af0faff2ba861.zip | |
Working on Tango.Git and Tag creation upon release.
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations')
| -rw-r--r-- | Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs index b0d4236bb..e594416f9 100644 --- a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs +++ b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs @@ -1695,6 +1695,11 @@ namespace Tango.Emulations.Emulators _cancelJob = true; } + public async void SetThreadLoadingState(ThreadLoadingState state) + { + await Transporter.SendResponse<StartThreadLoadingResponse>(new StartThreadLoadingResponse() { State = state, Message = $"{state.ToString()}", ErrorReason = "Fake emulator error" }, _threadLoadingToken); + } + #endregion } } |
