mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 04:34:56 +00:00
feat: Updates IMobileControl3 and adds IMobileControlMessenger
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user