mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Publicize Connect trait access (#422)
This commit is contained in:
parent
69f150e3f6
commit
16bc0d61a7
5 changed files with 24 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex"
|
name = "ntex"
|
||||||
version = "2.4.0"
|
version = "2.4.1"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Framework for composable network services"
|
description = "Framework for composable network services"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -55,6 +55,18 @@ impl ClientBuilder {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Use custom connection. Mainly used for mocking connections.
|
||||||
|
/// # Note
|
||||||
|
/// This overrides anything set with [`Self::connector`].
|
||||||
|
#[doc(hidden)]
|
||||||
|
pub fn connection(
|
||||||
|
mut self,
|
||||||
|
connection: impl super::connect::Connect + 'static,
|
||||||
|
) -> Self {
|
||||||
|
self.config.connector = Box::new(connection);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
/// Set request timeout.
|
/// Set request timeout.
|
||||||
///
|
///
|
||||||
/// Request timeout is the total time before a response must be received.
|
/// Request timeout is the total time before a response must be received.
|
||||||
|
|
|
@ -20,7 +20,8 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) trait Connect: fmt::Debug {
|
#[doc(hidden)]
|
||||||
|
pub trait Connect: fmt::Debug {
|
||||||
fn send_request(
|
fn send_request(
|
||||||
&self,
|
&self,
|
||||||
head: RequestHeadType,
|
head: RequestHeadType,
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
||||||
mod builder;
|
mod builder;
|
||||||
mod connect;
|
pub mod connect;
|
||||||
mod connection;
|
mod connection;
|
||||||
mod connector;
|
mod connector;
|
||||||
pub mod error;
|
pub mod error;
|
||||||
|
@ -74,12 +74,13 @@ pub struct Connect {
|
||||||
pub struct Client(Rc<ClientConfig>);
|
pub struct Client(Rc<ClientConfig>);
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub(crate) struct ClientConfig {
|
#[doc(hidden)]
|
||||||
|
pub struct ClientConfig {
|
||||||
pub(self) connector: Box<dyn HttpConnect>,
|
pub(self) connector: Box<dyn HttpConnect>,
|
||||||
pub(self) headers: HeaderMap,
|
pub headers: HeaderMap,
|
||||||
pub(self) timeout: Millis,
|
pub timeout: Millis,
|
||||||
pub(self) response_pl_limit: usize,
|
pub response_pl_limit: usize,
|
||||||
pub(self) response_pl_timeout: Millis,
|
pub response_pl_timeout: Millis,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for ClientConfig {
|
impl Default for ClientConfig {
|
||||||
|
|
|
@ -59,11 +59,8 @@ impl HttpMessage for ClientResponse {
|
||||||
|
|
||||||
impl ClientResponse {
|
impl ClientResponse {
|
||||||
/// Create new client response instance
|
/// Create new client response instance
|
||||||
pub(crate) fn new(
|
#[doc(hidden)]
|
||||||
head: ResponseHead,
|
pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self {
|
||||||
payload: Payload,
|
|
||||||
config: Rc<ClientConfig>,
|
|
||||||
) -> Self {
|
|
||||||
ClientResponse {
|
ClientResponse {
|
||||||
head,
|
head,
|
||||||
payload,
|
payload,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue