Exemplo n.º 1
0
        public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int eventLoopCount)
        {
            if (eventLoopGroup is null)
            {
                ThrowHelper.ThrowArgumentNullException(ExceptionArgument.eventLoopGroup);
            }

            _dispatcherLoop = eventLoopGroup.Dispatcher;
            PipeName        = _dispatcherLoop.PipeName;

            // Wait until the pipe is listening to connect
            _dispatcherLoop.WaitForLoopRun(StartTimeout);

            _eventLoops = new WorkerEventLoop[eventLoopCount];
            var terminationTasks = new Task[eventLoopCount];

            for (int i = 0; i < eventLoopCount; i++)
            {
                WorkerEventLoop eventLoop = null;
                bool            success   = false;
                try
                {
                    eventLoop = new WorkerEventLoop(this);
                    success   = eventLoop.ConnectTask.Wait(StartTimeout);
                    if (!success)
                    {
                        ThrowHelper.ThrowTimeoutException(PipeName);
                    }
                }
                catch (Exception ex)
                {
                    ThrowHelper.ThrowInvalidOperationException_CreateChild(ex);
                }
                finally
                {
                    if (!success)
                    {
                        Task.WhenAll(_eventLoops.Take(i).Select(loop => loop.ShutdownGracefullyAsync())).Wait();
                    }
                }

                _eventLoops[i]      = eventLoop;
                terminationTasks[i] = eventLoop.TerminationCompletion;
            }

            TerminationCompletion = Task.WhenAll(terminationTasks);
        }
Exemplo n.º 2
0
        public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int eventLoopCount)
        {
            Contract.Requires(eventLoopGroup != null);

            this.dispatcherLoop = eventLoopGroup.Dispatcher;
            this.PipeName       = this.dispatcherLoop.PipeName;

            // Wait until the pipe is listening to connect
            this.dispatcherLoop.WaitForLoopRun(StartTimeout);

            this.eventLoops = new WorkerEventLoop[eventLoopCount];
            var terminationTasks = new Task[eventLoopCount];

            for (int i = 0; i < eventLoopCount; i++)
            {
                WorkerEventLoop eventLoop;
                bool            success = false;
                try
                {
                    eventLoop = new WorkerEventLoop(this);
                    success   = eventLoop.ConnectTask.Wait(StartTimeout);
                    if (!success)
                    {
                        throw new TimeoutException($"Connect to dispatcher pipe {this.PipeName} timed out.");
                    }
                }
                catch (Exception ex)
                {
                    throw new InvalidOperationException($"Failed to create a child {nameof(WorkerEventLoop)}.", ex.Unwrap());
                }
                finally
                {
                    if (!success)
                    {
                        Task.WhenAll(this.eventLoops.Take(i).Select(loop => loop.ShutdownGracefullyAsync())).Wait();
                    }
                }

                this.eventLoops[i]  = eventLoop;
                terminationTasks[i] = eventLoop.TerminationCompletion;
            }

            this.TerminationCompletion = Task.WhenAll(terminationTasks);
        }
Exemplo n.º 3
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup)
     : this(eventLoopGroup, DefaultEventLoopThreadCount)
 {
 }
Exemplo n.º 4
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int nThreads, IEventExecutorChooserFactory <WorkerEventLoop> chooserFactory)
     : this(eventLoopGroup, nThreads, chooserFactory, RejectedExecutionHandlers.Reject())
 {
 }
Exemplo n.º 5
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int nThreads, IRejectedExecutionHandler rejectedHandler)
     : this(eventLoopGroup, nThreads, DefaultThreadFactory <WorkerEventLoopGroup> .Instance, rejectedHandler)
 {
 }
Exemplo n.º 6
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int nThreads, IThreadFactory threadFactory, IRejectedExecutionHandler rejectedHandler, TimeSpan breakoutInterval)
     : this(eventLoopGroup, nThreads, threadFactory, DefaultEventExecutorChooserFactory <WorkerEventLoop> .Instance, rejectedHandler, breakoutInterval)
 {
 }
Exemplo n.º 7
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int nThreads, IThreadFactory threadFactory, IRejectedExecutionHandler rejectedHandler)
     : this(eventLoopGroup, nThreads, threadFactory, rejectedHandler, LoopExecutor.DefaultBreakoutInterval)
 {
 }
Exemplo n.º 8
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int nThreads, IThreadFactory threadFactory)
     : this(eventLoopGroup, nThreads, threadFactory, RejectedExecutionHandlers.Reject())
 {
 }
Exemplo n.º 9
0
 public WorkerEventLoopGroup(DispatcherEventLoopGroup eventLoopGroup, int nThreads)
     : this(eventLoopGroup, nThreads, DefaultThreadFactory <WorkerEventLoopGroup> .Instance)
 {
 }