blob: 2b0f9ca39236d5f8bf2fc27573c1512b6307e40a [file] [log] [blame] [edit]
// 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, legacy=true)
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() -> ();
};