MCPcopy Create free account
hub / github.com/Moosync/Moosync / initialize_players

Method initialize_players

src/components/audiostream.rs:128–134  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

126
127 #[tracing::instrument(level = "debug", skip(self))]
128 pub async fn initialize_players(&self) {
129 let players = self.players.lock().await;
130 for player in players.iter() {
131 player.initialize(self.player_container);
132 }
133 tracing::debug!("Initialized players")
134 }
135
136 #[tracing::instrument(level = "debug", skip(self))]
137 pub async fn stop_playback(&self) -> Result<()> {

Callers 1

AudioStreamFunction · 0.80

Calls 1

initializeMethod · 0.45

Tested by

no test coverage detected