mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Commit before merging in Heath's branch
This commit is contained in:
parent
b9fceb830f
commit
f5626fcd8b
9 changed files with 214 additions and 148 deletions
|
|
@ -18,6 +18,8 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
|||
public interface IHasScheduleAwareness
|
||||
{
|
||||
CodecScheduleAwareness CodecSchedule { get; }
|
||||
|
||||
void GetSchedule();
|
||||
}
|
||||
|
||||
public class CodecScheduleAwareness
|
||||
|
|
|
|||
|
|
@ -767,6 +767,14 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
|||
SendText("xCommand CallHistory Recents Limit: 20 Order: OccurrenceTime");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required for IHasScheduleAwareness
|
||||
/// </summary>
|
||||
public void GetSchedule()
|
||||
{
|
||||
GetBookings(null);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the bookings for today
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -340,6 +340,11 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|||
|
||||
#region IHasScheduleAwareness Members
|
||||
|
||||
public void GetSchedule()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public CodecScheduleAwareness CodecSchedule
|
||||
{
|
||||
get {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ using PepperDash.Essentials.Devices.Common.Codec;
|
|||
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
||||
{
|
||||
public abstract class VideoCodecBase : Device, IRoutingInputsOutputs,
|
||||
IUsageTracking, IHasDialer, IHasSharing, ICodecAudio, iCodecInfo
|
||||
IUsageTracking, IHasDialer, IHasSharing, ICodecAudio, iCodecInfo //, ICommunicationMonitor
|
||||
{
|
||||
/// <summary>
|
||||
/// Fires when the status of any active, dialing, or incoming call changes or is new
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue