Trait web_audio_api::node::AudioScheduledSourceNode[][src]

pub trait AudioScheduledSourceNode {
    fn scheduler(&self) -> &Scheduler;

    fn start_at(&self, start: f64) { ... }
fn stop_at(&self, stop: f64) { ... }
fn start(&self) { ... }
fn stop(&self) { ... } }
Expand description

Interface of source nodes, controlling start and stop times. The node will emit silence before it is started, and after it has ended.

Required methods

Provided methods

Schedule playback start at this timestamp

Stop playback at this timestamp

Play immediately

Stop immediately

Implementors