NetMQ.NetMQPoller.TryExecuteTaskInline C# (CSharp) 메소드

TryExecuteTaskInline() 보호된 메소드

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

            return CanExecuteTaskInline && TryExecuteTask(task);
        }