mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-22 14:57:56 +01:00
Signal deduping
This commit is contained in:
parent
245bb7962e
commit
da5452f90f
@ -120,8 +120,16 @@ impl Machine {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn signal(&self) -> MutableSignal<Status> {
|
/// Generate a signal from the internal state.
|
||||||
self.state.signal()
|
///
|
||||||
|
/// A signal is a lossy stream of state changes. Lossy in that if changes happen in quick
|
||||||
|
/// succession intermediary values may be lost. But this isn't really relevant in this case
|
||||||
|
/// since the only relevant state is the latest one.
|
||||||
|
/// dedupe ensures that if state is changed but only changes to the value it had beforehand
|
||||||
|
/// (could for example happen if the machine changes current user but stays activated) no
|
||||||
|
/// update is sent.
|
||||||
|
pub fn signal(&self) -> impl Signal {
|
||||||
|
self.state.signal().dedupe()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user