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

Rename CheckAllTransferTasks to RunTransferTasks.

parent ddee94d7
No related branches found
No related tags found
No related merge requests found
...@@ -486,7 +486,7 @@ namespace AutoTx ...@@ -486,7 +486,7 @@ namespace AutoTx
// always check the incoming dirs, independently of running transfers: // always check the incoming dirs, independently of running transfers:
CheckIncomingDirectories(); CheckIncomingDirectories();
// now trigger potential transfer tasks: // now trigger potential transfer tasks:
CheckAllTransferTasks(); RunTransferTasks();
} }
} }
...@@ -588,11 +588,11 @@ namespace AutoTx ...@@ -588,11 +588,11 @@ namespace AutoTx
return ""; return "";
} }
/// <summary> /// <summary>
/// Check for transfers to be finished, resumed or newly initiated. /// Check for transfers to be finished, resumed or newly initiated.
/// </summary> /// </summary>
public void CheckAllTransferTasks() { public void RunTransferTasks() {
// only proceed when in a valid state: // only proceed when in a valid state:
if (_transferState != TxState.Stopped && if (_transferState != TxState.Stopped &&
_transferState != TxState.Paused) _transferState != TxState.Paused)
......
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