OLD | NEW |
| (Empty) |
1 # Service Manager Embedder API | |
2 | |
3 The Service Manager is a library for opaquely managing service process launch, | |
4 sandboxing, and lifetime; and for brokering Mojo interface connections among | |
5 services. | |
6 | |
7 The Service Manager must be configured with a static set of declarative service | |
8 definitions. The embedder API provides a means of embedding core Service Manager | |
9 functionality into a standalone executable, delegating configuration and | |
10 assorted implementation details to the embedder. | |
11 | |
12 As one example, the Content layer of Chromium embeds the Service Manager via | |
13 this API, and there it's used [WIP] to drive all process management and IPC | |
14 setup across the system. | |
15 | |
16 This API is a work in progress, and more details will be documented here as the | |
17 API is stabilized. | |
OLD | NEW |