mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
cleanup unused fsm
This commit is contained in:
parent
f49e4f0892
commit
fa510deac9
@ -54,14 +54,14 @@ where
|
||||
self.inner.lock().callback = Some(callback);
|
||||
}
|
||||
|
||||
// pub fn clear_state_change_callback(&self) {
|
||||
// self.inner.lock().callback = None;
|
||||
// }
|
||||
pub fn clear_state_change_callback(&self) {
|
||||
self.inner.lock().callback = None;
|
||||
}
|
||||
|
||||
// pub fn state_eventual_instance(&self) -> (T::State, EventualValueCloneFuture<T::State>) {
|
||||
// let inner = self.inner.lock();
|
||||
// (inner.state, inner.eventual.instance())
|
||||
// }
|
||||
pub fn state_eventual_instance(&self) -> (T::State, EventualValueCloneFuture<T::State>) {
|
||||
let inner = self.inner.lock();
|
||||
(inner.state, inner.eventual.instance())
|
||||
}
|
||||
|
||||
pub async fn consume(&self, input: &T::Input) -> Result<Option<T::Output>, ()> {
|
||||
let current_state = self.inner.lock().state;
|
||||
|
Loading…
Reference in New Issue
Block a user