Rocket/site/guide
Sergio Benitez 0bdb6b7bc7 Remove 'attach' fairings. Add 'liftoff' fairings.
Launch fairings are now fallible and take the place of attach fairings,
but they are only run, as the name implies, at launch time.

This is is a fundamental shift from eager execution of set-up routines,
including the now defunct attach fairings, to lazy execution,
precipitated by the transition to `async`. The previous functionality,
while simple, caused grave issues:

  1. A instance of 'Rocket' with async attach fairings requires an async
     runtime to be constructed.
  2. The instance is accessible in non-async contexts.
  3. The async attach fairings have no runtime in which to be run.

Here's an example:

```rust
let rocket = rocket::ignite()
    .attach(AttachFairing::from(|rocket| async {
        Ok(rocket.manage(load_from_network::<T>().await))
    }));

let state = rocket.state::<T>();
```

This had no real meaning previously yet was accepted by running the
attach fairing future in an isolated runtime. In isolation, this causes
no issue, but when attach fairing futures share reactor state with other
futures in Rocket, panics ensue.

The new Rocket application lifecycle is this:

  * Build - A Rocket instance is constructed. No fairings are run.
  * Ignition - All launch fairings are run.
  * Liftoff - If all launch fairings succeeded, the server is started.

New 'liftoff' fairings are run in this third phase.
2021-04-07 23:09:00 -07:00
..
0-introduction.md Update various dead hyperlinks; change some links from http to https. 2021-02-20 12:01:44 -08:00
1-quickstart.md Point all docs and doc links to 'master' branch. 2020-10-21 04:54:24 -07:00
2-getting-started.md Add doc notes on how to depend on '-dev' versions. 2021-03-27 14:20:43 -07:00
3-overview.md Prefer '&str' in doc examples. 2021-03-27 16:25:39 -07:00
4-requests.md Introduce scoped catchers. 2021-03-28 13:57:33 -07:00
5-responses.md Prefer '&str' in doc examples. 2021-03-27 16:25:39 -07:00
6-state.md Remove upstream unmaintained 'mysql' support. 2021-03-27 02:42:04 -07:00
7-fairings.md Remove 'attach' fairings. Add 'liftoff' fairings. 2021-04-07 23:09:00 -07:00
8-testing.md Fix all broken links. Update some outdated docs. 2021-03-19 18:09:13 -07:00
9-configuration.md Fix all broken links. Update some outdated docs. 2021-03-19 18:09:13 -07:00
10-pastebin.md UTF-8 routes. Forms revamp. Temp files. Capped. 2021-03-04 01:51:21 -08:00
11-conclusion.md Fix several typos in the guide. 2021-02-20 12:01:44 -08:00
index.md Fix several typos in the guide. 2021-02-20 12:01:44 -08:00