mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
feat: Adds IMobileControlMessenger
This commit is contained in:
parent
a5de8b14d9
commit
2850920d6e
1 changed files with 14 additions and 0 deletions
|
|
@ -26,6 +26,20 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
|||
void AddAction(string key, object action);
|
||||
|
||||
void RemoveAction(string key);
|
||||
|
||||
void AddDeviceMessenger(IMobileControlMessenger messenger);
|
||||
|
||||
bool CheckForDeviceMessenger(string key);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Describes a mobile control messenger
|
||||
/// </summary>
|
||||
public interface IMobileControlMessenger : IKeyed
|
||||
{
|
||||
IMobileControl3 AppServerController { get; }
|
||||
string MessagePath { get; }
|
||||
void RegisterWithAppServer(IMobileControl3 appServerController);
|
||||
}
|
||||
|
||||
public interface IMobileControlResponseMessage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue