2014-02-05 16:33:10 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::task;
|
2013-01-03 16:55:46 -06:00
|
|
|
|
2014-03-05 16:02:44 -06:00
|
|
|
type RingBuffer = Vec<f64> ;
|
2014-04-07 15:30:48 -05:00
|
|
|
type SamplesFn = proc(samples: &RingBuffer):Send;
|
2013-01-03 16:55:46 -06:00
|
|
|
|
|
|
|
enum Msg
|
|
|
|
{
|
2014-05-22 18:57:53 -05:00
|
|
|
GetSamples(String, SamplesFn), // sample set name, callback which receives samples
|
2013-01-03 16:55:46 -06:00
|
|
|
}
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn foo(name: String, samples_chan: Sender<Msg>) {
|
2014-01-27 17:29:50 -06:00
|
|
|
task::spawn(proc() {
|
2013-12-05 20:19:06 -06:00
|
|
|
let mut samples_chan = samples_chan;
|
2013-11-22 01:36:52 -06:00
|
|
|
let callback: SamplesFn = proc(buffer) {
|
|
|
|
for i in range(0u, buffer.len()) {
|
2014-03-05 17:28:08 -06:00
|
|
|
println!("{}: {}", i, *buffer.get(i))
|
2013-11-22 01:36:52 -06:00
|
|
|
}
|
|
|
|
};
|
2013-03-15 17:27:15 -05:00
|
|
|
samples_chan.send(GetSamples(name.clone(), callback));
|
2014-01-27 17:29:50 -06:00
|
|
|
});
|
2013-01-03 16:55:46 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {}
|