Uses of Class
io.openvidu.java.client.OpenViduJavaClientException
-
Uses of OpenViduJavaClientException in io.openvidu.java.client
Modifier and TypeMethodDescriptionvoid
Session.close()
Gracefully closes the Session: unpublishes all streams and evicts every participant.Session.createConnection()
Same asSession.createConnection(ConnectionProperties)
but with default ConnectionProperties values.Session.createConnection
(ConnectionProperties connectionProperties) Creates a new Connection object associated to Session object and configured withconnectionProperties
.OpenVidu.createSession()
Creates an OpenVidu session with the default settingsOpenVidu.createSession
(SessionProperties properties) Creates an OpenVidu sessionvoid
OpenVidu.deleteRecording
(String recordingId) Deletes a recording.boolean
OpenVidu.fetch()
Updates every property of every active Session with the current status they have in OpenVidu Server.boolean
Session.fetch()
Updates every property of the Session with the current status it has in OpenVidu Server.void
Session.forceDisconnect
(Connection connection) Removes the Connection from the Session.void
Session.forceDisconnect
(String connectionId) Same asforceDisconnect(ConnectionProperties)
but providing theconnectionId
instead of the Connection object.void
Session.forceUnpublish
(Publisher publisher) Forces some Connection to unpublish a Stream.void
Session.forceUnpublish
(String streamId) Same asforceUnpublish(Publisher)
but providing thestreamId
instead of the Publisher object.Session.generateToken()
Deprecated.Session.generateToken
(TokenOptions tokenOptions) Deprecated.UseSession.createConnection(ConnectionProperties)
instead to get aConnection
object.OpenVidu.getRecording
(String recordingId) Gets an existing recordingOpenVidu.listRecordings()
Lists all existing recordingsvoid
OpenVidu.startBroadcast
(String sessionId, String broadcastUrl) Starts the broadcast of aSession
void
OpenVidu.startBroadcast
(String sessionId, String broadcastUrl, RecordingProperties properties) Starts the broadcast of aSession
OpenVidu.startRecording
(String sessionId) Starts the recording of aSession
OpenVidu.startRecording
(String sessionId, RecordingProperties properties) Starts the recording of aSession
OpenVidu.startRecording
(String sessionId, String name) Starts the recording of aSession
void
OpenVidu.stopBroadcast
(String sessionId) Stops the broadcast of aSession
OpenVidu.stopRecording
(String recordingId) Stops the recording of aSession
Session.updateConnection
(String connectionId, ConnectionProperties connectionProperties) PRO Updates the properties of a Connection with aConnectionProperties
object.
Session.createConnection()
instead to get aConnection
object.