-
-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathRuntimeControllerBase.cs
More file actions
31 lines (25 loc) · 845 Bytes
/
RuntimeControllerBase.cs
File metadata and controls
31 lines (25 loc) · 845 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
namespace ElectronNET.Runtime.Controllers
{
using ElectronNET.API;
using ElectronNET.Runtime.Services;
using ElectronNET.Runtime.Services.ElectronProcess;
using ElectronNET.Runtime.Services.SocketBridge;
using System.Threading.Tasks;
internal abstract class RuntimeControllerBase : LifetimeServiceBase, IElectronNetRuntimeController
{
protected RuntimeControllerBase()
{
}
internal abstract ISocketConnection Socket { get; }
internal abstract ElectronProcessBase ElectronProcess { get; }
internal abstract SocketBridgeService SocketBridge { get; }
protected override Task StartCore()
{
return Task.CompletedTask;
}
protected override Task StopCore()
{
return Task.CompletedTask;
}
}
}