NetMQ.NetMQPoller.TryExecuteTaskInline C# (CSharp) Method

TryExecuteTaskInline() protected method

protected TryExecuteTaskInline ( Task task, bool taskWasPreviouslyQueued ) : bool
task Task
taskWasPreviouslyQueued bool
return bool
        protected override bool TryExecuteTaskInline(Task task, bool taskWasPreviouslyQueued)
        {
            if (task == null)
                throw new ArgumentNullException("task");
            CheckDisposed();

            return CanExecuteTaskInline && TryExecuteTask(task);
        }