removed f variable, to fix

This commit is contained in:
Giulio De Pasquale 2021-01-04 13:35:34 +00:00
parent 76e95f2859
commit d6cd0f1f20
2 changed files with 13 additions and 8 deletions

View File

@ -119,11 +119,15 @@ impl EventDispatcher {
F: Fn(&Event, &PairStatus) -> Fut,
Fut: Future<Output = ()> + Send,
{
let f = Box::new(move |e, s| tokio::spawn(f(&e, s)));
match event {
EventKind::Any => self.on_any_event_handlers.push(f),
_ => self.event_handlers.entry(event).or_default().push(f),
EventKind::Any => self
.on_any_event_handlers
.push(Box::new(move |e, s| tokio::spawn(f(&e, s)))),
_ => self
.event_handlers
.entry(event)
.or_default()
.push(Box::new(move |e, s| tokio::spawn(f(&e, s)))),
}
}
@ -135,15 +139,15 @@ impl EventDispatcher {
F: Fn(&PositionWrapper, &PairStatus) -> Fut,
Fut: Future<Output = ()> + Send,
{
let f = Box::new(move |pw, s| tokio::spawn(f(&pw, s)));
match state {
PositionState::Any => self.on_any_position_state_handlers.push(f),
PositionState::Any => self
.on_any_position_state_handlers
.push(Box::new(move |pw, s| tokio::spawn(f(&pw, s)))),
_ => self
.position_state_handlers
.entry(state)
.or_default()
.push(f),
.push(Box::new(move |pw, s| tokio::spawn(f(&pw, s)))),
}
}
}

View File

@ -13,6 +13,7 @@ pub enum PositionState {
impl PositionState {
fn color(self) -> String {
match self {
PositionState::Any => "blue",
PositionState::Critical | PositionState::Loss => "red",
PositionState::BreakEven => "yellow",
PositionState::MinimumProfit | PositionState::Profit => "green",