blob: 5194c8fefb483fac8568652fb52631aa7834c6dd [file] [log] [blame]
// Copyright 2020 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.
library fuchsia.modular;
/// A capability, typically offered from `sessionmgr` to select child components,
/// allowing them to request the session to be restarted.
@discoverable
closed protocol SessionRestartController {
/// Requests to cleanly terminate and then immediately restart the session.
strict Restart();
};