-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
EventBus.cs
66 lines (56 loc) · 1.86 KB
/
EventBus.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.NET.Sdk.Razor.Tool
{
internal abstract class EventBus
{
public static readonly EventBus Default = new DefaultEventBus();
/// <summary>
/// Called when the server updates the keep alive value.
/// </summary>
public virtual void UpdateKeepAlive(TimeSpan timeSpan)
{
}
/// <summary>
/// Called each time the server listens for new connections.
/// </summary>
public virtual void ConnectionListening()
{
}
/// <summary>
/// Called when a connection to the server occurs.
/// </summary>
public virtual void ConnectionReceived()
{
}
/// <summary>
/// Called when one or more connections have completed processing. The number of connections
/// processed is provided in <paramref name="count"/>.
/// </summary>
public virtual void ConnectionCompleted(int count)
{
}
/// <summary>
/// Called when a compilation is completed successfully and the response is written to the stream.
/// </summary>
public virtual void CompilationCompleted()
{
}
/// <summary>
/// Called when a bad client connection was detected and the server will be shutting down as a
/// result.
/// </summary>
public virtual void ConnectionRudelyEnded()
{
}
/// <summary>
/// Called when the server is shutting down because the keep alive timeout was reached.
/// </summary>
public virtual void KeepAliveReached()
{
}
private class DefaultEventBus : EventBus
{
}
}
}