Finished converting MobileControlSIMPLRoomBridge to use new MobileControlSIMPLRoomJoinMap

This commit is contained in:
Neil Dorin
2019-12-18 16:37:37 -07:00
parent 96cd5cfe81
commit 08d6090bc5
5 changed files with 234 additions and 369 deletions

View File

@@ -111,6 +111,18 @@ namespace PepperDash.Essentials.Core
else return 0;
}
/// <summary>
/// Returns the join span for the join with the specified key
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public uint GetJoinSpanForKey(string key)
{
if (Joins.ContainsKey(key))
return Joins[key].JoinSpan;
else return 0;
}
}