Rename ITGServiceBridge to ITGInterop

This commit is contained in:
Cyberboss
2017-09-19 22:44:34 -04:00
parent 2869bcba19
commit 152a99bbd1
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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));
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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" />