namespace RGB.NET.Core; /// /// Represents an update trigger used to trigger device-updates. /// public interface IDeviceUpdateTrigger : IUpdateTrigger { /// /// Indicates that there's data available to process. /// void TriggerHasData(); }