Propagate a musical clock from a real-time audio thread to other threads:
```rust let tempo = 132.2; let samplerate = 44100; let (mut updater, consumer) = audioclock(tempo, sample_rate);
// ... somehow send updater to the real-time audio thread.
// From an audio callback, increment the clock, // from the real-time audio thread updater.increment(frame_count);
// Somewhere else, use the clock: println!("frame processed: ", consumer.rawframes(), 128); println!("beat count: ", consumer.beat()); println!("beat duration in seconds: ", consumer.beatduration());
let otherconsumer = consumer.clone(); // Send otherconsumer to some other thread.
```