Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: services/service_manager/public/interfaces/service_control.mojom

Issue 2480603004: Service Manager: Implement graceful service termination (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module service_manager.mojom;
6
7 // The client interface a Service uses to issue requests to the Service Manager.
8 interface ServiceControl {
9 // Informs the Service Manager that the Service is ready to terminate. If
10 // the Service Manager needs the Service to stay alive - for example, if
11 // there's an in-flight OnConnect request which hasn't been acked yet - this
12 // request is ignored. Otherwise the Service pipe will soon be severed by
13 // the Service Manager, signaling that shutdown may proceed at the service's
14 // own discretion.
15 RequestQuit();
16 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698