Skip to main content

HttpSyncTransport

Struct HttpSyncTransport 

Source
pub struct HttpSyncTransport { /* private fields */ }
Expand description

Bounded blocking HTTP client for leader-to-follower sync batches.

Implementations§

Source§

impl HttpSyncTransport

Source

pub fn new(host: impl Into<String>, port: u16) -> Self

Creates a plain-HTTP transport for host and port.

Source

pub fn with_auth_token(self, token: impl Into<String>) -> Self

Adds a bearer token without exposing it through Debug.

Source

pub fn with_scheme(self, scheme: SyncPeerScheme) -> Self

Selects the HTTP or HTTPS transport scheme.

Source

pub fn with_https(self) -> Self

Selects HTTPS transport.

Source

pub fn with_timeout_ms(self, timeout_ms: u64) -> Self

Sets connect, read, and write deadlines in milliseconds.

Source

pub fn with_timeouts(self, timeouts: HttpTimeouts) -> Self

Sets independent connect, read and write deadlines.

Source

pub fn with_max_response_bytes(self, max_response_bytes: usize) -> Self

Sets the maximum number of response bytes read from a peer.

Source

pub fn with_max_request_body_bytes(self, max_request_body_bytes: usize) -> Self

Sets the maximum encoded request-body size.

Source

pub fn with_source_identity(self, source_identity: CoreIdentity) -> Self

Uses the identity-aware appcore.sync.v1 envelope for outbound batches.

Source

pub fn with_cancellation_token(self, cancellation: CancellationToken) -> Self

Replaces the cooperative cancellation token used by transport I/O.

Source

pub fn cancel(&self)

Cancels active and future transport operations.

Source

pub fn is_cancelled(&self) -> bool

Reports whether cancellation was requested.

Source

pub fn post_sync_events(&self, message: &SyncMessage) -> SyncResult<()>

Posts a batch to /v1/sync/events and requires a 2xx response.

Trait Implementations§

Source§

impl Clone for HttpSyncTransport

Source§

fn clone(&self) -> HttpSyncTransport

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for HttpSyncTransport

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for HttpSyncTransport

Source§

impl PartialEq for HttpSyncTransport

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.