blob: ccf80991d95619e651c8b93b47a047ecc1a542c2 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// # Deprecation
///
/// The Components v1 framework, which serves uses these protocols, has been
/// removed from the Fuchsia platform in https://fxrev.dev/874963 and
/// https://fxrev.dev/874960.
///
/// Use Component Framework v2 and its APIs in fuchsia.component.* instead.
@available(added=7, removed=14)
library fuchsia.sys.test;
/// An interface for interacting with the isolated system cache. Typically only
/// accessed from tests.
@discoverable
closed protocol CacheControl {
/// Causes all isolated caches for the system to be cleared.
strict Clear() -> ();
};