mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 12:37:07 +00:00
feat: Updates IMobileControl3 and adds IMobileControlMessenger
This commit is contained in:
parent
610fae972d
commit
ab6f1f36f0
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 AddAction(string key, object action);
|
||||||
|
|
||||||
void RemoveAction(string key);
|
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
|
public interface IMobileControlResponseMessage
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue