blob: 753afc8991f17de19e1b5b611c40df8ca294d8c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using 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);
}
}
|