pub struct UseEventSourceOptions<T>where
T: 'static,{ /* private fields */ }Expand description
Options for use_event_source_with_options.
Implementations§
Source§impl<T> UseEventSourceOptions<T>where
T: 'static,
impl<T> UseEventSourceOptions<T>where
T: 'static,
Sourcepub fn reconnect_limit(self, value: ReconnectLimit) -> Self
pub fn reconnect_limit(self, value: ReconnectLimit) -> Self
Retry times. Defaults to ReconnectLimit::Limited(3). Use ReconnectLimit::Infinite for
infinite retries.
Sourcepub fn reconnect_interval(self, value: u64) -> Self
pub fn reconnect_interval(self, value: u64) -> Self
Retry interval in ms. Defaults to 3000.
Sourcepub fn on_failed(self, value: impl Fn() + Send + Sync + 'static) -> Self
pub fn on_failed(self, value: impl Fn() + Send + Sync + 'static) -> Self
On maximum retry times reached.
Sourcepub fn immediate(self, value: bool) -> Self
pub fn immediate(self, value: bool) -> Self
If true the EventSource connection will immediately be opened when calling this function.
If false you have to manually call the open function.
Defaults to true.
Sourcepub fn named_events(self, value: impl Into<Vec<String>>) -> Self
pub fn named_events(self, value: impl Into<Vec<String>>) -> Self
List of named events to listen for on the EventSource.
Sourcepub fn on_event(
self,
value: impl Fn(&Event) -> UseEventSourceOnEventReturn + Send + Sync + 'static,
) -> Self
pub fn on_event( self, value: impl Fn(&Event) -> UseEventSourceOnEventReturn + Send + Sync + 'static, ) -> Self
The on_event is called before processing any event inside of use_event_source.
Return UseEventSourceOnEventReturn::Ignore to ignore further processing of the respective event
in use_event_source, or UseEventSourceOnEventReturn::Use to process the event as usual.
Beware that ignoring processing the open and error events may yield unexpected results.
You may want to use UseEventSourceMessage::try_from() to access the event data.
Default handler returns UseEventSourceOnEventReturn::Use.
Sourcepub fn with_credentials(self, value: bool) -> Self
pub fn with_credentials(self, value: bool) -> Self
If CORS should be set to include credentials. Defaults to false.
pub fn _marker<New__T>(
self,
value: PhantomData<New__T>,
) -> UseEventSourceOptions<New__T>where
New__T: 'static,
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for UseEventSourceOptions<T>
impl<T> !RefUnwindSafe for UseEventSourceOptions<T>
impl<T> Send for UseEventSourceOptions<T>where
T: Send,
impl<T> Sync for UseEventSourceOptions<T>where
T: Sync,
impl<T> Unpin for UseEventSourceOptions<T>where
T: Unpin,
impl<T> !UnwindSafe for UseEventSourceOptions<T>
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more