forked from microsoft/GraphEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTrinityServer.cs
More file actions
35 lines (32 loc) · 883 Bytes
/
TrinityServer.cs
File metadata and controls
35 lines (32 loc) · 883 Bytes
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
// Graph Engine
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
using System;
using System.Net;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using Trinity;
using Trinity.Utilities;
using Trinity.Diagnostics;
using Trinity.Network.Sockets;
using Trinity.FaultTolerance;
using System.Diagnostics;
using Trinity.Extension;
namespace Trinity.Network
{
/// <summary>
/// Represents a stock Trinity server.
/// </summary>
[ExtensionPriority(-100)]
public class TrinityServer : CommunicationInstance
{
/// <inheritdoc/>
protected internal sealed override RunningMode RunningMode
{
get { return RunningMode.Server; }
}
}
}