Interface InfinityService.ParticipantStep
-
- All Implemented Interfaces:
public interface InfinityService.ParticipantStepRepresents the Participant functions section.
-
-
Method Summary
Modifier and Type Method Description abstract Call<CallsResponse>calls(CallsRequest request, String token)Requests an upgrade of the call to include media. abstract Call<CallsResponse>calls(CallsRequest request, Token token)Requests an upgrade of the call to include media. abstract Call<Boolean>dtmf(DtmfRequest request, String token)Sends DTMF digits to the participant. abstract Call<Boolean>dtmf(DtmfRequest request, Token token)Sends DTMF digits to the participant. abstract Call<Unit>mute(String token)Requests to mute participant's audio. abstract Call<Unit>mute(Token token)Requests to mute participant's audio. abstract Call<Unit>unmute(String token)Requests to unmute participant's audio. abstract Call<Unit>unmute(Token token)Requests to unmute participant's audio. abstract Call<Unit>videoMuted(String token)Requests to mute participant's video. abstract Call<Unit>videoMuted(Token token)Requests to mute participant's video. abstract Call<Unit>videoUnmuted(String token)Requests to unmute participant's video. abstract Call<Unit>videoUnmuted(Token token)Requests to unmute participant's video. abstract Call<Unit>takeFloor(String token)Requests to take presentation floor. abstract Call<Unit>takeFloor(Token token)Requests to take presentation floor. abstract Call<Unit>releaseFloor(String token)Requests to release presentation floor. abstract Call<Unit>releaseFloor(Token token)Requests to release presentation floor. abstract Call<Boolean>message(MessageRequest request, String token)Sends a message to this participant. abstract Call<Boolean>message(MessageRequest request, Token token)Sends a message to this participant. abstract Call<Boolean>preferredAspectRatio(PreferredAspectRatioRequest request, String token)Specifies the aspect ratio the participant would like to receive. abstract Call<Boolean>preferredAspectRatio(PreferredAspectRatioRequest request, Token token)Specifies the aspect ratio the participant would like to receive. abstract InfinityService.CallStepcall(UUID callId)Sets the call ID. abstract InfinityService.ConferenceStepgetConferenceStep()the ConferenceStep that produced this ParticipantStep -
-
Method Detail
-
calls
abstract Call<CallsResponse> calls(CallsRequest request, String token)
Requests an upgrade of the call to include media.
See documentation.
- Parameters:
request- a request bodytoken- a valid token- Returns:
an answer
-
calls
abstract Call<CallsResponse> calls(CallsRequest request, Token token)
Requests an upgrade of the call to include media.
See documentation.
- Parameters:
request- a request bodytoken- a valid token- Returns:
an answer
-
dtmf
abstract Call<Boolean> dtmf(DtmfRequest request, String token)
Sends DTMF digits to the participant.
See documentation.
- Parameters:
request- a request bodytoken- a valid token- Returns:
true if successful, false otherwise
-
dtmf
abstract Call<Boolean> dtmf(DtmfRequest request, Token token)
Sends DTMF digits to the participant.
See documentation.
- Parameters:
request- a request bodytoken- a valid token- Returns:
true if successful, false otherwise
-
mute
abstract Call<Unit> mute(String token)
Requests to mute participant's audio.
See documentation.
- Parameters:
token- a valid token
-
mute
abstract Call<Unit> mute(Token token)
Requests to mute participant's audio.
See documentation.
- Parameters:
token- a valid token
-
unmute
abstract Call<Unit> unmute(String token)
Requests to unmute participant's audio.
See documentation.
- Parameters:
token- a valid token
-
unmute
abstract Call<Unit> unmute(Token token)
Requests to unmute participant's audio.
See documentation.
- Parameters:
token- a valid token
-
videoMuted
abstract Call<Unit> videoMuted(String token)
Requests to mute participant's video.
See documentation.
- Parameters:
token- a valid token
-
videoMuted
abstract Call<Unit> videoMuted(Token token)
Requests to mute participant's video.
See documentation.
- Parameters:
token- a valid token
-
videoUnmuted
abstract Call<Unit> videoUnmuted(String token)
Requests to unmute participant's video.
See documentation.
- Parameters:
token- a valid token
-
videoUnmuted
abstract Call<Unit> videoUnmuted(Token token)
Requests to unmute participant's video.
See documentation.
- Parameters:
token- a valid token
-
takeFloor
abstract Call<Unit> takeFloor(String token)
Requests to take presentation floor.
- Parameters:
token- a valid token
-
takeFloor
abstract Call<Unit> takeFloor(Token token)
Requests to take presentation floor.
- Parameters:
token- a valid token
-
releaseFloor
abstract Call<Unit> releaseFloor(String token)
Requests to release presentation floor.
- Parameters:
token- a valid token
-
releaseFloor
abstract Call<Unit> releaseFloor(Token token)
Requests to release presentation floor.
- Parameters:
token- a valid token
-
message
abstract Call<Boolean> message(MessageRequest request, String token)
Sends a message to this participant.
See documentation.
- Parameters:
request- a request bodytoken- a valid token- Returns:
true if operation was successful, false otherwise
-
message
abstract Call<Boolean> message(MessageRequest request, Token token)
Sends a message to this participant.
See documentation.
- Parameters:
request- a request bodytoken- a valid token- Returns:
true if operation was successful, false otherwise
-
preferredAspectRatio
abstract Call<Boolean> preferredAspectRatio(PreferredAspectRatioRequest request, String token)
Specifies the aspect ratio the participant would like to receive.
See documentation.
- Parameters:
request- a request bodytoken- a valid token
-
preferredAspectRatio
abstract Call<Boolean> preferredAspectRatio(PreferredAspectRatioRequest request, Token token)
Specifies the aspect ratio the participant would like to receive.
See documentation.
- Parameters:
request- a request bodytoken- a valid token
-
call
abstract InfinityService.CallStep call(UUID callId)
Sets the call ID.
- Parameters:
callId- an ID of the call
-
getConferenceStep
abstract InfinityService.ConferenceStep getConferenceStep()
the ConferenceStep that produced this ParticipantStep
-
-
-
-