2020-01-28 14:36:35 +03:00
---
title: Connection Lifecycle
menu: docs_architecture
2020-02-01 21:22:11 +01:00
weight: 1030
2020-01-28 14:36:35 +03:00
---
# Architecture overview
2020-02-01 21:22:11 +01:00
After Server has started listening to all sockets, [`Accept` ][Accept] and [`Worker` ][Worker] are two main loops responsible for processing incoming client connections.
2020-01-28 14:36:35 +03:00
Once connection accepted Application level protocol processing happens in a protocol specific [`Dispatcher` ][Dispatcher] loop spawned from [`Worker` ][Worker].
Please note, below diagrams are outlining happy-path scenarios only.
![](/img/diagrams/connection_overview.svg)
## Accept loop in more detail
![](/img/diagrams/connection_accept.svg)
2020-02-01 21:22:11 +01:00
Most of code implementation resides in [`actix-server` ][server] crate for struct [`Accept` ][Accept].
2020-01-28 14:36:35 +03:00
## Worker loop in more detail
![](/img/diagrams/connection_worker.svg)
2020-02-01 21:22:11 +01:00
Most of code implementation resides in [`actix-server` ][server] crate for struct [`Worker` ][Worker].
2020-01-28 14:36:35 +03:00
## Request loop roughly
![](/img/diagrams/connection_request.svg)
2020-02-01 21:22:11 +01:00
Most of code implementation for request loop resides in [`actix-web` ][web] and [`actix-http` ][http] crates.
2020-01-28 14:36:35 +03:00
[server]: https://crates.io/crates/actix-server
[web]: https://crates.io/crates/actix-web
[http]: https://crates.io/crates/actix-http
[Accept]: https://github.com/actix/actix-net/blob/master/actix-server/src/accept.rs
[Worker]: https://github.com/actix/actix-net/blob/master/actix-server/src/worker.rs
2020-02-01 21:22:11 +01:00
[Dispatcher]: https://github.com/actix/actix-web/blob/master/actix-http/src/h1/dispatcher.rs