public ChoAbortableQueuedExecutionService(string name, bool autoStart)
     : base(name)
 {
     _queuedMsgService = new ChoQueuedMsgService <ChoExecutionServiceData>("{0}_{1}".FormatString(name, typeof(ChoAbortableQueuedExecutionService).Name),
                                                                           ChoStandardQueuedMsgObject <ChoExecutionServiceData> .QuitMsg, autoStart, true, QueueMessageHandler);
 }