tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
RemoteGateway.cs
Go to the documentation of this file.
1using System;
2using System.Linq;
3
5
7{
12 public sealed class RemoteGateway : IGateway
13 {
15 public GatewayInformation Information() => throw new NotImplementedException();
16
18 public IQueryable<Instance> Instances() => throw new NotImplementedException();
19 }
20}
Represents information about a SwarmNode retrieved via a Interfaces.IGateway.
IGateway for accessing remote SwarmNodes.
GatewayInformation Information()
Gets GatewayInformation.The GatewayInformation for the IGateway.
IQueryable< Instance > Instances()
Queries all Instances in the IGateway.Queryable Instances.
Management interface for the parent SwarmNode.
Definition IGateway.cs:11