pub type TimelyLogger = TypedLogger<TimelyEventBuilder, TimelyEvent>;
Expand description
Logger for timely dataflow system events.
Aliased Type§
struct TimelyLogger { /* private fields */ }
Implementations
Source§impl<CB, T> TypedLogger<CB, T>where
CB: ContainerBuilder,
impl<CB, T> TypedLogger<CB, T>where
CB: ContainerBuilder,
Sourcepub fn log<S>(&self, event: S)
pub fn log<S>(&self, event: S)
Logs an event. Equivalent to Logger::log
, with the exception that it converts the
event to T
before logging.
Sourcepub fn log_many<I>(&self, events: I)
pub fn log_many<I>(&self, events: I)
Logs multiple events. Equivalent to Logger::log_many
, with the exception that it
converts the events to T
before logging.
Trait Implementations
Source§impl<CB, T> Clone for TypedLogger<CB, T>where
CB: ContainerBuilder,
impl<CB, T> Clone for TypedLogger<CB, T>where
CB: ContainerBuilder,
Source§fn clone(&self) -> TypedLogger<CB, T>
fn clone(&self) -> TypedLogger<CB, T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<CB, T> Debug for TypedLogger<CB, T>
impl<CB, T> Debug for TypedLogger<CB, T>
Source§impl<CB, T> Deref for TypedLogger<CB, T>where
CB: ContainerBuilder,
impl<CB, T> Deref for TypedLogger<CB, T>where
CB: ContainerBuilder,
Source§impl<CB, T> From<Logger<CB>> for TypedLogger<CB, T>where
CB: ContainerBuilder,
impl<CB, T> From<Logger<CB>> for TypedLogger<CB, T>where
CB: ContainerBuilder,
Source§fn from(inner: Logger<CB>) -> TypedLogger<CB, T>
fn from(inner: Logger<CB>) -> TypedLogger<CB, T>
Converts to this type from the input type.