Skip to content
Snippets Groups Projects
Commit 0f9d7dd5 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Add missing docstrings

parent a515d1f3
No related branches found
No related tags found
No related merge requests found
......@@ -40,11 +40,27 @@ namespace ATxService
/// </summary>
private readonly List<string> _incomingIgnore = new List<string>();
/// <summary>
/// The CPU load monitoring object.
/// </summary>
private readonly Cpu _cpu;
private RoboCommand _roboCommand;
/// <summary>
/// Size of the file currently being transferred (in bytes). Zero if no transfer running.
/// </summary>
private long _txCurFileSize;
/// <summary>
/// Progress (in percent) of the file currently being transferred. Zero if no transfer.
/// </summary>
private int _txCurFileProgress;
/// <summary>
/// Internal counter to introduce a delay between two subsequent transfers.
/// </summary>
private int _waitCyclesBeforeNextTx;
private Cpu _cpu;
private DateTime _lastUserDirCheck = DateTime.MinValue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment