예제 #1
0
        /// <summary>
        ///     Starts the execution of a task.
        /// </summary>
        /// <param name="task">The task that should be executed.</param>
        private async void StartTask(IInternalTask task)
        {
            await task.Execute();

            TaskCompleted(task);
        }