blob: 99d8c635664a91a704dfd0fa5d8d8fca13e2c41b [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
protocol SessionRestartController {
/// Requests to cleanly terminate and then immediately restart the session.
Restart();
};