How would you name a class with the following public interface:

/// <summary>
///     Enqeues and exectutes actions synchronously on seperated threads using the <see cref="ThreadPool"/>. 
/// </summary>
/// <remarks>
///     Syncronism is guaranteed on a per-instance base in that each enqued action will be executed
///     after the previous action has completed execution for each instance of <see cref="ThreadPoolExectutor" /> 
/// </remarks>
internal class ThreadPoolExectutor
{
    /// <summary>
    /// Initializes a new instance of the <see cref="ThreadPoolExectutor"/> class.
    /// </summary>
    /// <param name="capacity">The absolute (not the initial) number of elements that the <see cref="ThreadPoolExectutor"/> can contain.</param>
    public ThreadPoolExectutor(int capacity)

    /// <summary>
    /// Occurs when exception occured during execution.
    /// </summary>
    public event EventHandler<ExceptionEventArgs> ExceptionOccurred;

    /// <summary>
    /// Enqueues a new action with a single parameter for execution on the thread pool.
    /// </summary>
    /// <param name="action">
    /// The action to enqueue for execution.
    /// </param>
    /// <param name="param">
    /// The parameter for the action.
    /// </param>
    /// <typeparam name="TArg">
    /// The type of the <paramref name="param"/>.
    /// </typeparam>
    public void Execute<TArg>(Action<TArg> action, TArg param)

    /// <summary>
    /// Enqueues a new action with no parameters for execution on the thread pool.
    /// </summary>
    /// <param name="action">
    /// The action to enqueue for execution.
    /// </param>
    public void Execute(Action action)
}
link|improve this question

70% accept rate
1  
Why do you have two variants of Execute(Action<T>, T)? You can use lambda expressions to close over any arguments. This class also looks a lot like a System.Threading.Tasks.TaskScheduler. – Strilanc Sep 23 '10 at 12:37
"Enqeues and exectutes" "Manages queue and executes" perhaps :) – Mark Schultheiss Sep 23 '10 at 12:37
I was going to suggest SerialTaskDispatcher as an answer, but @Strilanc's mention of a class with similar-sounding functionality looks like it might be a better alternative. – shambulator Sep 23 '10 at 12:42
Naming is just about the hardest part of programming: there is often no single right answer. – Richard Sep 23 '10 at 12:42
1  
@bitbonk I didn't mean you should use Object, I meant the function shouldn't be there at all [because you can just use Execute(() => OnStart(itemToStart))]. Also, TaskScheduler can execute calls synchronously. In fact, I wrote and use one which runs calls on the thread pool one after another. – Strilanc Sep 23 '10 at 14:37
show 4 more comments
feedback

4 Answers

up vote 5 down vote accepted

Enqeues and exectutes actions

I would call it ThreadPoolDispatcher

link|improve this answer
I was going to say something similar, but the name should indicate that there is a queuing mechanism at work so your Thread won't be dispatched immediately. – Justin Niessner Sep 23 '10 at 12:30
Well better than a "tutor" since I see no tutorial in the class, and it does not seem to be an "Exec" to nor does it "Execute" anyone :) – Mark Schultheiss Sep 23 '10 at 12:33
@Justin Niessner i disagree. queuing is internals of class and should not be exposed. i think Dispatcher is descriptive enough, it means that it handles threads the way it thinks it is best. – Andrey Sep 23 '10 at 13:12
I renamed it to ThreadPoolDispatcher and remaned the Execute methods to Invoke. This matches System.Windows.Threading.Dispatcher. – bitbonk Sep 23 '10 at 14:04
feedback

personally id try and refactor the class into 2 smaller ones to follow the Single Responsibility Principal - therefore have a class for Executing actions

ThreadPoolDispatcher [as per the above suggestion that i agree with]

and then a ThreadPoolQueuer which will be responsible for queuing threads

just personal preference though

link|improve this answer
good single purpose note – Mark Schultheiss Sep 23 '10 at 12:35
Going with YAGNI, I will refactor it your way as soon as I need seprate queueing strategies. (I wonder if this way of thinking is wise though). – bitbonk Sep 23 '10 at 14:06
feedback

How about ThreadPoolAgent.

link|improve this answer
feedback

I would name it ThreadPoolManager

link|improve this answer
2  
manager is a bad name - it seems to indicate a God class and good design principles tell us to move away from those type of classes – stack72 Sep 23 '10 at 12:34
2  
I want all my classes to be God like and inspire awe in the beer holder :) – Mark Schultheiss Sep 23 '10 at 12:46
@mark - LOL...that's awesome! – Danny Sep 20 '11 at 13:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.