diff --git a/Parallel.Net.Tests/Parallel.Net.Tests.csproj b/Parallel.Net.Tests/Parallel.Net.Tests.csproj index 303973d..d8ba1ff 100644 --- a/Parallel.Net.Tests/Parallel.Net.Tests.csproj +++ b/Parallel.Net.Tests/Parallel.Net.Tests.csproj @@ -2,9 +2,8 @@ net6.0 - enable - enable - + disable + disable false true MontoyaTech.Parallel.Net.Tests diff --git a/Parallel.Net/Parallel.Net.csproj b/Parallel.Net/Parallel.Net.csproj index 945d1c3..3bc29db 100644 --- a/Parallel.Net/Parallel.Net.csproj +++ b/Parallel.Net/Parallel.Net.csproj @@ -2,8 +2,8 @@ net6.0 - enable - enable + disable + disable MontoyaTech.Parallel.Net MontoyaTech.Parallel.Net True diff --git a/Parallel.Net/ParallelTask.cs b/Parallel.Net/ParallelTask.cs index 17df7ae..60a6271 100644 --- a/Parallel.Net/ParallelTask.cs +++ b/Parallel.Net/ParallelTask.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using System.Threading; using System.Threading.Tasks; namespace MontoyaTech.Parallel.Net @@ -55,16 +56,24 @@ namespace MontoyaTech.Parallel.Net } } + /// + /// Whether or not this parallel task is running. + /// protected bool running = false; + /// + /// Whether or not this parallel task has completed successfully. + /// protected bool completed = false; + /// + /// Whether or not this parallel task failed due to an exception. + /// protected bool failed = false; - protected bool exceptionStopped = false; - - protected ManualResetEvent handle; - + /// + /// The thrown exception for this parallel task if any. + /// protected Exception thrownException = null; /// diff --git a/Parallel.Net/ParallelTaskT.cs b/Parallel.Net/ParallelTaskT.cs index 296dfda..4e1583a 100644 --- a/Parallel.Net/ParallelTaskT.cs +++ b/Parallel.Net/ParallelTaskT.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; +using System.Threading; using System.Threading.Tasks; namespace MontoyaTech.Parallel.Net @@ -24,10 +25,19 @@ namespace MontoyaTech.Parallel.Net } } + /// + /// The result of this parallel task. + /// protected ResultT result = default(ResultT); + /// + /// The function to run when this task is ran. + /// protected Func func = null; + /// + /// The input to pass to the function when this task is ran. + /// protected InputT input = default(InputT); /// @@ -55,7 +65,7 @@ namespace MontoyaTech.Parallel.Net { this.running = true; - this.handle = new ManualResetEvent(false); + var handle = new ManualResetEvent(false); ThreadPool.QueueUserWorkItem((object state) => { @@ -72,7 +82,7 @@ namespace MontoyaTech.Parallel.Net this.thrownException = ex; } - this.handle.Set(); + handle.Set(); if (countDown != null) countDown.Signal(); @@ -82,8 +92,8 @@ namespace MontoyaTech.Parallel.Net if (blocking) { if (!timeout.HasValue) - this.handle.WaitOne(); - else if (!this.handle.WaitOne(timeout.Value) && throwOnTimeout) + handle.WaitOne(); + else if (!handle.WaitOne(timeout.Value) && throwOnTimeout) throw new Exception($"ParallelTask did not complete within {timeout.Value.TotalMilliseconds} miliseconds"); } @@ -97,8 +107,14 @@ namespace MontoyaTech.Parallel.Net /// public class ParallelTask : ParallelTask { + /// + /// The action to be ran when this task is run. + /// protected Action action = null; + /// + /// The input to pass to the action when ran. + /// protected InputT input = default(InputT); /// @@ -125,7 +141,7 @@ namespace MontoyaTech.Parallel.Net { this.running = true; - this.handle = new ManualResetEvent(false); + var handle = new ManualResetEvent(false); ThreadPool.QueueUserWorkItem((object state) => { @@ -142,7 +158,7 @@ namespace MontoyaTech.Parallel.Net this.thrownException = ex; } - this.handle.Set(); + handle.Set(); if (countDown != null) countDown.Signal(); @@ -152,8 +168,8 @@ namespace MontoyaTech.Parallel.Net if (blocking) { if (!timeout.HasValue) - this.handle.WaitOne(); - else if (!this.handle.WaitOne(timeout.Value) && throwOnTimeout) + handle.WaitOne(); + else if (!handle.WaitOne(timeout.Value) && throwOnTimeout) throw new Exception($"ParallelTask did not complete within {timeout.Value.TotalMilliseconds} miliseconds"); } }