/// <summary>   Unsubscribes the given notificationHandler. </summary>
        ///
        /// <param name="handler">  The notificationHandler. </param>

        public void Unsubscribe(ProcessHighLoadHandler handler)
        {
            ProcessHighLoad -= handler;
        }
        /// <summary>   Subscribes the given notificationHandler. </summary>
        ///
        /// <param name="notificationHandler">  The notificationHandler. </param>

        public void Subscribe(ProcessHighLoadHandler notificationHandler)
        {
            ProcessHighLoad += notificationHandler;
        }