(_future: F)
| 39 | } |
| 40 | |
| 41 | pub fn spawn<F: 'static + std::future::Future<Output = ()>>(_future: F) { |
| 42 | // do nothing since this is a mock for testing purposes |
| 43 | } |
| 44 | |
| 45 | pub fn next_time() -> u64 { |
| 46 | // removes the ns precision of the current time to simulate a round time in nanoseconds |
no outgoing calls