From 86dfc395ec2dcffac5dd18a8cf3f1cdd74868283 Mon Sep 17 00:00:00 2001 From: Trevor Payne Date: Tue, 31 May 2022 17:48:18 -0500 Subject: [PATCH] Rename IHasPowerReboot to IHasPowerCycle Update naming scheme to Cycle from Reboot --- .../PepperDashEssentialsBase/Devices/PduInterfaces.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PduInterfaces.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PduInterfaces.cs index 2ca802a2..4cdda3c6 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PduInterfaces.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Devices/PduInterfaces.cs @@ -7,17 +7,17 @@ namespace PepperDash_Essentials_Core.Devices /// /// Interface for any device that is able to control it'spower and has a configurable reboot time /// - public interface IHasPowerReboot : IKeyName, IHasPowerControlWithFeedback + public interface IHasPowerCycle : IKeyName, IHasPowerControlWithFeedback { /// /// Delay between power off and power on for reboot /// - int PowerRebootTimeMs { get;} + int PowerCycleTimeMs { get;} /// /// Reboot outlet /// - void PowerReboot(); + void PowerCycle(); } /// @@ -28,7 +28,7 @@ namespace PepperDash_Essentials_Core.Devices /// /// Collection of IPduOutlets /// - Dictionary PduOutlets { get; } + Dictionary PduOutlets { get; } /// /// Count of PduOutlets