Struct sc_authority_discovery::WorkerConfig [−][src]
pub struct WorkerConfig { pub max_publish_interval: Duration, pub keystore_refresh_interval: Duration, pub max_query_interval: Duration, pub publish_non_global_ips: bool, }
Expand description
Configuration of Worker
.
Fields
max_publish_interval: Duration
The maximum interval in which the node will publish its own address on the DHT.
By default this is set to 1 hour.
keystore_refresh_interval: Duration
Interval at which the keystore is queried. If the keys have changed, unconditionally re-publish its addresses on the DHT.
By default this is set to 1 minute.
max_query_interval: Duration
The maximum interval in which the node will query the DHT for new entries.
By default this is set to 10 minutes.
publish_non_global_ips: bool
If false
, the node won’t publish on the DHT multiaddresses that contain non-global
IP addresses (such as 10.0.0.1).
Recommended: false
for live chains, and true
for local chains or for testing.
Defaults to true
to avoid the surprise factor.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for WorkerConfig
impl Send for WorkerConfig
impl Sync for WorkerConfig
impl Unpin for WorkerConfig
impl UnwindSafe for WorkerConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
The counterpart to unchecked_from
.
Consume self to return an equivalent value of T
.
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more