using Google.Protobuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.ExternalBridge
{
///
/// Represents an request handler.
///
public interface IExternalBridgeRequestHandler
{
///
/// Called when any of the external bridge clients (receivers) has disconnected.
///
/// The receiver.
void OnReceiverDisconnected(ExternalBridgeReceiver receiver);
}
}