mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-24 21:46:52 +01:00
Rename ITGServiceBridge to ITGInterop
This commit is contained in:
@@ -11,7 +11,7 @@ using TGServiceInterface;
|
||||
namespace TGServerService
|
||||
{
|
||||
//handles talking between the world and us
|
||||
partial class TGStationServer : ITGServiceBridge
|
||||
partial class TGStationServer : ITGInterop
|
||||
{
|
||||
|
||||
object topicLock = new object();
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace TGServiceInterface
|
||||
/// Used by DD to access the interop API with call()()
|
||||
/// </summary>
|
||||
[ServiceContract]
|
||||
public interface ITGServiceBridge
|
||||
public interface ITGInterop
|
||||
{
|
||||
/// <summary>
|
||||
/// Called from /world/ExportService(command)
|
||||
@@ -36,7 +36,7 @@ namespace TGServiceInterface
|
||||
{
|
||||
try
|
||||
{
|
||||
ChannelFactory<ITGServiceBridge> channel = null;
|
||||
ChannelFactory<ITGInterop> channel = null;
|
||||
try
|
||||
{
|
||||
Server.GetComponentAndChannel(out channel).InteropMessage(String.Join(" ", args));
|
||||
@@ -10,7 +10,7 @@ namespace TGServiceInterface
|
||||
/// <summary>
|
||||
/// List of types that can be used with GetComponen
|
||||
/// </summary>
|
||||
public static readonly IList<Type> ValidInterfaces = new List<Type> { typeof(ITGByond), typeof(ITGChat), typeof(ITGCompiler), typeof(ITGConfig), typeof(ITGDreamDaemon), typeof(ITGRepository), typeof(ITGSService), typeof(ITGConnectivity), typeof(ITGAdministration), typeof(ITGServiceBridge) };
|
||||
public static readonly IList<Type> ValidInterfaces = new List<Type> { typeof(ITGByond), typeof(ITGChat), typeof(ITGCompiler), typeof(ITGConfig), typeof(ITGDreamDaemon), typeof(ITGRepository), typeof(ITGSService), typeof(ITGConnectivity), typeof(ITGAdministration), typeof(ITGInterop) };
|
||||
|
||||
/// <summary>
|
||||
/// Base name of the communication pipe
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
<Compile Include="Server.cs" />
|
||||
<Compile Include="..\Version.cs" />
|
||||
<Compile Include="Service.cs" />
|
||||
<Compile Include="ServiceBridge.cs" />
|
||||
<Compile Include="Interop.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="tgs.ico" />
|
||||
|
||||
Reference in New Issue
Block a user