1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//! Async library for the Open Sound Control (OSC) protocol
//!
//! # Examples
//!
//! ```
//! # #[async_std::main]
//! # async fn main() -> async_osc::Result<()> {
//! use async_std::stream::StreamExt;
//! use async_osc::{prelude::*, OscSocket, OscPacket, OscType, Error, Result};
//!
//! let mut socket = OscSocket::bind("localhost:5050").await?;
//!
//! // Open a second socket to send a test message.
//! async_std::task::spawn(async move {
//! let socket = OscSocket::bind("localhost:0").await?;
//! socket.connect("localhost:5050").await?;
//! socket.send(("/volume", (0.9f32,))).await?;
//! Ok::<(), Error>(())
//! });
//!
//! // Listen for incoming packets on the first socket.
//! while let Some(packet) = socket.next().await {
//! let (packet, peer_addr) = packet?;
//! eprintln!("Receive from {}: {:?}", peer_addr, packet);
//! match packet {
//! OscPacket::Bundle(_) => {}
//! OscPacket::Message(message) => match message.as_tuple() {
//! ("/volume", &[OscType::Float(vol)]) => {
//! eprintln!("Set volume: {}", vol);
//! // Do something with the received data.
//! // Here, just quit the doctest.
//! assert_eq!(vol, 0.9f32);
//! return Ok(())
//! }
//! _ => {}
//! },
//! }
//! }
//! # Ok(())
//! # }
//! // tbi
//! ```
/// Re-export the main OSC types from the [`rosc`] crate.
pub use crate*;
pub use ;
pub use ;
// pub use udp::*;
/// Prelude with extensions to [`rosc`] types.
///
/// It is recommended to import everything from this module whenever working with these types.
/// See [`preulude::OscMessageExt`] for details.