ChangeNotifier

Type Alias ChangeNotifier 

Source
pub type ChangeNotifier = Receiver<()>;
Expand description

Represents the change listener.

Internally this is simply the receiver of a broadcast. The actual message being broadcast can an should be ignored. All that matters is, once a message has been received, the config was changed and needs to be re-processed.

Aliased Typeยง

pub struct ChangeNotifier { /* private fields */ }