mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07: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]
|
||||
name = "ntex"
|
||||
version = "2.4.0"
|
||||
version = "2.4.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -55,6 +55,18 @@ impl ClientBuilder {
|
|||
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.
|
||||
///
|
||||
/// 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(
|
||||
&self,
|
||||
head: RequestHeadType,
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
use std::rc::Rc;
|
||||
|
||||
mod builder;
|
||||
mod connect;
|
||||
pub mod connect;
|
||||
mod connection;
|
||||
mod connector;
|
||||
pub mod error;
|
||||
|
@ -74,12 +74,13 @@ pub struct Connect {
|
|||
pub struct Client(Rc<ClientConfig>);
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct ClientConfig {
|
||||
#[doc(hidden)]
|
||||
pub struct ClientConfig {
|
||||
pub(self) connector: Box<dyn HttpConnect>,
|
||||
pub(self) headers: HeaderMap,
|
||||
pub(self) timeout: Millis,
|
||||
pub(self) response_pl_limit: usize,
|
||||
pub(self) response_pl_timeout: Millis,
|
||||
pub headers: HeaderMap,
|
||||
pub timeout: Millis,
|
||||
pub response_pl_limit: usize,
|
||||
pub response_pl_timeout: Millis,
|
||||
}
|
||||
|
||||
impl Default for ClientConfig {
|
||||
|
|
|
@ -59,11 +59,8 @@ impl HttpMessage for ClientResponse {
|
|||
|
||||
impl ClientResponse {
|
||||
/// Create new client response instance
|
||||
pub(crate) fn new(
|
||||
head: ResponseHead,
|
||||
payload: Payload,
|
||||
config: Rc<ClientConfig>,
|
||||
) -> Self {
|
||||
#[doc(hidden)]
|
||||
pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self {
|
||||
ClientResponse {
|
||||
head,
|
||||
payload,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue