Skip to content

Conversation

@ladvoc
Copy link
Contributor

@ladvoc ladvoc commented Aug 18, 2025

This PR exposes the ParticipantActive event present in other SDKs, and documents when it is necessary to use it over ParticipantConnected. Example usage:

while let Some(ev) = room_rx.recv().await {
  let RoomEvent::ParticipantActive(participant) = ev else { continue };
  println!("Participant '{}' is active", participant.identity());
  // Send data streams or packets...
}  

@ladvoc ladvoc requested review from lukasIO and theomonnom August 18, 2025 04:29
@ladvoc ladvoc marked this pull request as ready for review August 18, 2025 04:32
@ladvoc ladvoc requested a review from chenosaurus August 18, 2025 04:53
@ladvoc
Copy link
Contributor Author

ladvoc commented Aug 28, 2025

Closing in favor of #688

@ladvoc ladvoc closed this Aug 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants