Addresses issues causing build to fail.

This commit is contained in:
Neil Dorin
2020-03-10 15:01:28 -06:00
parent f27b6fadb9
commit b71313248d
6 changed files with 53 additions and 24 deletions

View File

@@ -264,8 +264,30 @@ namespace PepperDash.Essentials
/// <param name="routeKey"></param> /// <param name="routeKey"></param>
public void RunRouteAction(string routeKey) public void RunRouteAction(string routeKey)
{ {
RunRouteAction(routeKey, null); RunRouteAction(routeKey, new Action(() => { }));
} }
/// <summary>
///
/// </summary>
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey)
{
throw new NotImplementedException();
}
/// <summary>
///
/// </summary>
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
{
throw new NotImplementedException();
}
/// <summary> /// <summary>
/// Gets a source from config list SourceListKey and dynamically build and executes the /// Gets a source from config list SourceListKey and dynamically build and executes the

View File

@@ -394,8 +394,30 @@ namespace PepperDash.Essentials
/// <param name="routeKey"></param> /// <param name="routeKey"></param>
public void RunRouteAction(string routeKey) public void RunRouteAction(string routeKey)
{ {
RunRouteAction(routeKey, null); RunRouteAction(routeKey, new Action(() => { }));
} }
/// <summary>
///
/// </summary>
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey)
{
throw new NotImplementedException();
}
/// <summary>
///
/// </summary>
/// <param name="routeKey"></param>
/// <param name="souceListKey"></param>
/// <param name="successCallback"></param>
public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
{
throw new NotImplementedException();
}
/// <summary> /// <summary>
/// Gets a source from config list SourceListKey and dynamically build and executes the /// Gets a source from config list SourceListKey and dynamically build and executes the

View File

@@ -564,7 +564,7 @@ namespace PepperDash.Essentials
void UiSelectSource(string key) void UiSelectSource(string key)
{ {
// Run the route and when it calls back, show the source // Run the route and when it calls back, show the source
CurrentRoom.RunRouteAction(key, null); CurrentRoom.RunRouteAction(key, new Action(() => { }));
} }
/// <summary> /// <summary>

View File

@@ -726,7 +726,7 @@ namespace PepperDash.Essentials
void UiSelectSource(string key) void UiSelectSource(string key)
{ {
// Run the route and when it calls back, show the source // Run the route and when it calls back, show the source
CurrentRoom.RunRouteAction(key, null); CurrentRoom.RunRouteAction(key, new Action(() => { }));
} }
/// <summary> /// <summary>

View File

@@ -163,7 +163,7 @@ namespace PepperDash.Essentials.Core
/// A label for the join to better describe it's usage /// A label for the join to better describe it's usage
/// </summary> /// </summary>
[JsonProperty("label")] [JsonProperty("label")]
public string Label { get; protected set; } public string Label { get; set; }
/// <summary> /// <summary>
/// Signal type(s) /// Signal type(s)
/// </summary> /// </summary>
@@ -183,12 +183,12 @@ namespace PepperDash.Essentials.Core
/// Indicates whether the join is read and/or write /// Indicates whether the join is read and/or write
/// </summary> /// </summary>
[JsonProperty("joinCapabilities")] [JsonProperty("joinCapabilities")]
public eJoinCapabilities JoinCapabilities { get; protected set; } public eJoinCapabilities JoinCapabilities { get; set; }
/// <summary> /// <summary>
/// Indicates a set of valid values (particularly if this translates to an enum /// Indicates a set of valid values (particularly if this translates to an enum
/// </summary> /// </summary>
[JsonProperty("validValues")] [JsonProperty("validValues")]
public string[] ValidValues { get; protected set; } public string[] ValidValues { get; set; }
} }
} }

View File

@@ -56,19 +56,4 @@ namespace PepperDash.Essentials.Devices.Common.DSP
// ATC // ATC
// Mics, unusual // Mics, unusual
public interface IBiampTesiraDspLevelControl : IBasicVolumeWithFeedback
{
/// <summary>
/// In BiAmp: Instance Tag, QSC: Named Control, Polycom:
/// </summary>
string ControlPointTag { get; }
int Index1 { get; }
int Index2 { get; }
bool HasMute { get; }
bool HasLevel { get; }
bool AutomaticUnmuteOnVolumeUp { get; }
}
} }