Restore App::finish() method

This commit is contained in:
Nikolay Kim 2022-01-03 22:49:41 +06:00
parent f975b4fd10
commit 802d8cbcfa
3 changed files with 27 additions and 1 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.5.6] - 2022-01-03
* web: Restore `App::finish()` method
## [0.5.5] - 2022-01-03
* Disable default runtime selection

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.5.5"
version = "0.5.6"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"

View file

@ -449,6 +449,28 @@ where
F::Future: 'static,
Err: ErrorRenderer,
{
/// Construct service factory with default `AppConfig`, suitable for `http::HttpService`.
///
/// ```rust,no_run
/// use ntex::{web, http, server};
///
/// #[ntex::main]
/// async fn main() -> std::io::Result<()> {
/// server::build().bind("http", "127.0.0.1:0", |_|
/// http::HttpService::build().finish(
/// web::App::new()
/// .route("/index.html", web::get().to(|| async { "hello_world" }))
/// .finish()
/// )
/// )?
/// .run()
/// .await
/// }
/// ```
pub fn finish(self) -> AppFactory<M, F, Err> {
IntoServiceFactory::<AppFactory<M, F, Err>, Request, ()>::into_factory(self)
}
/// Construct service factory suitable for `http::HttpService`.
///
/// ```rust,no_run