pub fn stream_events_to_strategy_with_tick<C, T, S>(
strategy: Arc<S>,
chain_events: C,
ticket_events: T,
tick: Duration,
me: Address,
) -> AbortHandlewhere
C: Stream<Item = ChainEvent> + Send + 'static,
T: Stream<Item = VerifiedTicket> + Send + 'static,
S: SingularStrategy + Send + Sync + 'static,Expand description
Streams ChainEvents, VerifiedTickets and tick at regular time
intervals as events into the given strategy.