Package com.amazonaws.ivs.broadcast
Class ParticipantInfo
java.lang.Object
com.amazonaws.ivs.broadcast.ParticipantInfo
Information about a participant. The properties in this class will remain constant throughout its lifetime, with the exception of `userInfo`.
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionAttributes associated with this participantThis represents the capabilities that can be performed on this participant, such as publish or subscribe.final boolean
This represents if the participant is local (associated with the token used on this device to join the Stage).final String
An ID assigned to this participant, and it's guaranteed to be unique in one Stage sessionfinal String
A user ID associated with this participantThis object exists for use by the developer, to store information that might be associated with this participant. -
Method Summary
-
Field Details
-
participantId
An ID assigned to this participant, and it's guaranteed to be unique in one Stage session -
userId
A user ID associated with this participant -
isLocal
public final boolean isLocalThis represents if the participant is local (associated with the token used on this device to join the Stage). -
capabilities
This represents the capabilities that can be performed on this participant, such as publish or subscribe. -
userInfo
This object exists for use by the developer, to store information that might be associated with this participant. This object will never be accessed by the SDK, and changes will not be synced to remote SDK `userInfo` objects. -
attributes
Attributes associated with this participant
-