/// <summary>
 /// Initializes the worker task with the specified configuration.
 /// </summary>
 /// <param name="name"></param>
 /// <param name="configValue"></param>
 public override void Initialize(string name, System.Collections.Specialized.NameValueCollection configValue)
 {
     ConnectionName           = configValue.GetStringValue("connectionName", null);
     MessageFailedSkipSeconds = configValue.GetDoubleValue("MessageExceptionSkipSeconds", 0.0);
     base.Initialize(name, configValue);
 }