/* * Copyright (c) 2024 ETH Zürich, IT Services * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ namespace SafeExamBrowser.Lockdown.Contracts { /// /// Provides functionality to ensure that one or more remain in a given . /// public interface IFeatureConfigurationMonitor { /// /// Registers a configuration to be monitored for the given status. /// void Observe(IFeatureConfiguration configuration, FeatureConfigurationStatus status); /// /// Stops the monitoring activity and removes all observed configurations. /// void Reset(); /// /// Starts the monitoring activity. /// void Start(); } }