[roll] Roll fuchsia [component_manager] Make Router async

Update Router::route from a synchronous function that uses
a completer to an async function. This cleans up the places
in the component manager codebase where the component's
task group had to be use to create an async context.

The main reason the change to async is better is because
it is a useful pattern to write a Router that calls
another router to get a capability *and then* operate
on that capability. This is much easier in an async
context.

This code is a bit awkward because Rust doesn't support
async llambdas. A good clean up here would be to replace
some of these llambdas with structs that impl Routable.
Then Router could hold a Box<dyn Routable>.

Original-Bug: b/325096862
Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/992415
Original-Revision: 39001268300e014868d9e2fb78f6cd1ba0510c55
GitOrigin-RevId: f3db9c7b1dedadab8fb6af3122e6a6abae86efaa
Change-Id: I1e3796d95f675676da68d0b8f064578d0a7b0300
1 file changed
tree: 8712f6b4bcf128ed5c1268793e7dd6af091b833a
  1. ctf/
  2. git-hooks/
  3. infra/
  4. third_party/
  5. cts
  6. firmware
  7. flower
  8. jiri.lock
  9. MILESTONE
  10. minimal
  11. prebuilts
  12. README.md
  13. stem
  14. test_durations
  15. toolchain
README.md

Integration

This repository contains Fuchsia's Global Integration manifest files.

Making changes

All changes should be made to the internal version of this repository. Our infrastructure automatically updates this version when the internal one changes.

Currently all changes must be made by a Google employee. Non-Google employees wishing to make a change can ask for assistance via the IRC channel #fuchsia on Freenode.

Obtaining the source

First install Jiri.

Next run:

$ jiri init
$ jiri import minimal https://fuchsia.googlesource.com/integration
$ jiri update

Third party

Third party projects should have their own subdirectory in ./third_party.