Skip to content

Instantly share code, notes, and snippets.

@tomliversidge
Created June 24, 2017 14:03
Show Gist options
  • Save tomliversidge/0a5f32b2cecf285256d9c6940e9ea225 to your computer and use it in GitHub Desktop.
Save tomliversidge/0a5f32b2cecf285256d9c6940e9ea225 to your computer and use it in GitHub Desktop.
Saga 5.4
private void CheckForCompletion(PID pid)
{
_transfers.Remove(pid);
var remaining = _transfers.Count;
//... write status to console.
if (remaining == 0)
{
//... output results
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment