diff --git a/ATxService/AutoTx.cs b/ATxService/AutoTx.cs index 6a86b6c3917c3475eea9decc04e60a74f14ee84d..95415d5b7073b48391110a2f3006769925d4d5f2 100644 --- a/ATxService/AutoTx.cs +++ b/ATxService/AutoTx.cs @@ -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;