Publicize Connect trait access (#422)

This commit is contained in:
jamescarterbell 2024-09-18 11:18:49 -04:00 committed by GitHub
parent 69f150e3f6
commit 16bc0d61a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 24 additions and 13 deletions

View file

@ -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"

View file

@ -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.

View file

@ -20,7 +20,8 @@ where
}
}
pub(super) trait Connect: fmt::Debug {
#[doc(hidden)]
pub trait Connect: fmt::Debug {
fn send_request(
&self,
head: RequestHeadType,

View file

@ -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 {

View file

@ -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,