-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathAbstractEventExecutor.cs
More file actions
161 lines (130 loc) · 6.17 KB
/
Copy pathAbstractEventExecutor.cs
File metadata and controls
161 lines (130 loc) · 6.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace DotNetty.Common.Concurrency
{
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using DotNetty.Common.Internal.Logging;
/// <summary>
/// Abstract base class for <see cref="IEventExecutor" /> implementations
/// </summary>
public abstract class AbstractEventExecutor : AbstractExecutorService, IEventExecutor
{
static readonly IInternalLogger Logger = InternalLoggerFactory.GetInstance<AbstractEventExecutor>();
static readonly TimeSpan DefaultShutdownQuietPeriod = TimeSpan.FromSeconds(2);
static readonly TimeSpan DefaultShutdownTimeout = TimeSpan.FromSeconds(15);
/// <summary>Creates an instance of <see cref="AbstractEventExecutor"/>.</summary>
protected AbstractEventExecutor()
: this(null)
{
}
/// <summary>Creates an instance of <see cref="AbstractEventExecutor"/>.</summary>
protected AbstractEventExecutor(IEventExecutorGroup parent)
{
this.Parent = parent;
}
/// <inheritdoc cref="IEventExecutorGroup"/>
public abstract bool IsShuttingDown { get; }
/// <inheritdoc cref="IEventExecutorGroup"/>
public abstract Task TerminationCompletion { get; }
/// <inheritdoc cref="IEventExecutorGroup"/>
public IEventExecutor GetNext() => this;
/// <inheritdoc cref="IEventExecutor"/>
public IEventExecutorGroup Parent { get; }
/// <inheritdoc cref="IEventExecutor"/>
public bool InEventLoop => this.IsInEventLoop(Thread.CurrentThread);
/// <inheritdoc cref="IEventExecutor" />
public IEnumerable<IEventExecutor> Items => this.GetItems();
protected abstract IEnumerable<IEventExecutor> GetItems();
/// <inheritdoc cref="IEventExecutor"/>
public abstract bool IsInEventLoop(Thread thread);
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask Schedule(IRunnable action, TimeSpan delay)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask Schedule(Action action, TimeSpan delay)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask Schedule(Action<object> action, object state, TimeSpan delay)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask Schedule(Action<object, object> action, object context, object state, TimeSpan delay)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask ScheduleAtFixedRate(Action action, TimeSpan initialDelay, TimeSpan period)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask ScheduleAtFixedRate(IRunnable action, TimeSpan initialDelay, TimeSpan period)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask ScheduleWithFixedDelay(Action action, TimeSpan initialDelay, TimeSpan delay)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual IScheduledTask ScheduleWithFixedDelay(IRunnable action, TimeSpan initialDelay, TimeSpan delay)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual Task ScheduleAsync(Action action, TimeSpan delay) =>
this.ScheduleAsync(action, delay, CancellationToken.None);
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual Task ScheduleAsync(Action<object> action, object state, TimeSpan delay, CancellationToken cancellationToken)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual Task ScheduleAsync(Action<object> action, object state, TimeSpan delay) =>
this.ScheduleAsync(action, state, delay, CancellationToken.None);
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual Task ScheduleAsync(Action action, TimeSpan delay, CancellationToken cancellationToken)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual Task ScheduleAsync(Action<object, object> action, object context, object state, TimeSpan delay) =>
this.ScheduleAsync(action, context, state, delay, CancellationToken.None);
/// <inheritdoc cref="IScheduledExecutorService"/>
public virtual Task ScheduleAsync(
Action<object, object> action,
object context,
object state,
TimeSpan delay,
CancellationToken cancellationToken)
{
throw new NotSupportedException();
}
/// <inheritdoc cref="IScheduledExecutorService"/>
public Task ShutdownGracefullyAsync() => this.ShutdownGracefullyAsync(DefaultShutdownQuietPeriod, DefaultShutdownTimeout);
/// <inheritdoc cref="IScheduledExecutorService"/>
public abstract Task ShutdownGracefullyAsync(TimeSpan quietPeriod, TimeSpan timeout);
/// <inheritdoc cref="IEventExecutor"/>
protected void SetCurrentExecutor(IEventExecutor executor) => ExecutionEnvironment.SetCurrentExecutor(executor);
protected static void SafeExecute(IRunnable task)
{
try
{
task.Run();
}
catch (Exception ex)
{
Logger.Warn("A task raised an exception. Task: {}", task, ex);
}
}
}
}