Uses of Class
com.bandwidth.webrtc.models.Subscriptions
Package | Description |
---|---|
com.bandwidth.webrtc.controllers | |
com.bandwidth.webrtc.models |
-
Uses of Subscriptions in com.bandwidth.webrtc.controllers
Methods in com.bandwidth.webrtc.controllers that return types with arguments of type Subscriptions Modifier and Type Method Description ApiResponse<Subscriptions>
APIController. getParticipantSubscriptions(java.lang.String accountId, java.lang.String participantId, java.lang.String sessionId)
Get a participant's subscriptions.java.util.concurrent.CompletableFuture<ApiResponse<Subscriptions>>
APIController. getParticipantSubscriptionsAsync(java.lang.String accountId, java.lang.String participantId, java.lang.String sessionId)
Get a participant's subscriptions.Methods in com.bandwidth.webrtc.controllers with parameters of type Subscriptions Modifier and Type Method Description ApiResponse<java.lang.Void>
APIController. addParticipantToSession(java.lang.String accountId, java.lang.String sessionId, java.lang.String participantId, Subscriptions body)
Add a participant to a session Subscriptions can optionally be provided as part of this call.java.util.concurrent.CompletableFuture<ApiResponse<java.lang.Void>>
APIController. addParticipantToSessionAsync(java.lang.String accountId, java.lang.String sessionId, java.lang.String participantId, Subscriptions body)
Add a participant to a session Subscriptions can optionally be provided as part of this call.ApiResponse<java.lang.Void>
APIController. updateParticipantSubscriptions(java.lang.String accountId, java.lang.String participantId, java.lang.String sessionId, Subscriptions body)
Update a participant's subscriptions This is a full update that will replace the participant's subscriptions.java.util.concurrent.CompletableFuture<ApiResponse<java.lang.Void>>
APIController. updateParticipantSubscriptionsAsync(java.lang.String accountId, java.lang.String participantId, java.lang.String sessionId, Subscriptions body)
Update a participant's subscriptions This is a full update that will replace the participant's subscriptions. -
Uses of Subscriptions in com.bandwidth.webrtc.models
Methods in com.bandwidth.webrtc.models that return Subscriptions Modifier and Type Method Description Subscriptions
Subscriptions.Builder. build()
Builds a newSubscriptions
object using the set fields.Subscriptions
Participant. getSubscriptions()
Getter for Subscriptions.Methods in com.bandwidth.webrtc.models with parameters of type Subscriptions Modifier and Type Method Description void
Participant. setSubscriptions(Subscriptions subscriptions)
Setter for Subscriptions.Participant.Builder
Participant.Builder. subscriptions(Subscriptions subscriptions)
Setter for subscriptions.Constructors in com.bandwidth.webrtc.models with parameters of type Subscriptions Constructor Description Participant(java.lang.String id, java.lang.String callbackUrl, java.util.List<PublishPermissionEnum> publishPermissions, java.util.List<java.lang.String> sessions, Subscriptions subscriptions, java.lang.String tag, DeviceApiVersionEnum deviceApiVersion)
Initialization constructor.