blob: 753afc8991f17de19e1b5b611c40df8ca294d8c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inusing Google.Protobuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.ExternalBridge
{
/// <summary>
/// Represents an <see cref="IExternalBridgeService"/> request handler.
/// </summary>
public interface IExternalBridgeRequestHandler
{
/// <summary>
/// Called when any of the external bridge clients (receivers) has disconnected.
/// </summary>
/// <param name="receiver">The receiver.</param>
void OnReceiverDisconnected(ExternalBridgeReceiver receiver);
}
}
|