diff --git a/openvidu-browser/src/OpenVidu/StreamManager.ts b/openvidu-browser/src/OpenVidu/StreamManager.ts index 4b517aa6..2ec3c588 100644 --- a/openvidu-browser/src/OpenVidu/StreamManager.ts +++ b/openvidu-browser/src/OpenVidu/StreamManager.ts @@ -362,7 +362,7 @@ export class StreamManager extends EventDispatcher { } /** - * Updates the current configuration for the [[PublisherSpeakingEvent]] feature and the [StreamManagerEvent.streamAudioVolumeChange](/en/stable/api/openvidu-browser/classes/streammanagerevent.html) feature for this specific + * Updates the current configuration for the [[PublisherSpeakingEvent]] feature and the [StreamManagerEvent.streamAudioVolumeChange](/en/stable/api/openvidu-browser/classes/StreamManagerEvent.html) feature for this specific * StreamManager audio stream, overriding the global options set with [[OpenVidu.setAdvancedConfiguration]]. This way you can customize the audio events options * for each specific StreamManager and change them dynamically. * diff --git a/openvidu-browser/src/OpenViduInternal/Interfaces/Public/OpenViduAdvancedConfiguration.ts b/openvidu-browser/src/OpenViduInternal/Interfaces/Public/OpenViduAdvancedConfiguration.ts index feb6fa94..34a5fc50 100644 --- a/openvidu-browser/src/OpenViduInternal/Interfaces/Public/OpenViduAdvancedConfiguration.ts +++ b/openvidu-browser/src/OpenViduInternal/Interfaces/Public/OpenViduAdvancedConfiguration.ts @@ -33,7 +33,7 @@ export interface OpenViduAdvancedConfiguration { screenShareChromeExtension?: string; /** - * Custom configuration for the [[PublisherSpeakingEvent]] feature and the [StreamManagerEvent.streamAudioVolumeChange](/en/stable/api/openvidu-browser/classes/streammanagerevent.html) feature. It is an object which includes the following optional properties: + * Custom configuration for the [[PublisherSpeakingEvent]] feature and the [StreamManagerEvent.streamAudioVolumeChange](/en/stable/api/openvidu-browser/classes/StreamManagerEvent.html) feature. It is an object which includes the following optional properties: * - `interval`: (number) how frequently the analyser polls the audio stream to check if speaking has started/stopped or audio volume has changed. Default **100** (ms) * - `threshold`: (number) the volume at which _publisherStartSpeaking_ and _publisherStopSpeaking_ events will be fired. Default **-50** (dB) * @@ -56,7 +56,7 @@ export interface OpenViduAdvancedConfiguration { forceMediaReconnectionAfterNetworkDrop?: boolean; /** - * The milliseconds that must elapse after triggering [[ExceptionEvent]] of name [`ICE_CONNECTION_DISCONNECTED`](/en/stable/api/openvidu-browser/enums/exceptioneventname.html#ice_connection_disconnected) to perform an automatic reconnection process of the affected media stream. + * The milliseconds that must elapse after triggering [[ExceptionEvent]] of name [`ICE_CONNECTION_DISCONNECTED`](/en/stable/api/openvidu-browser/enums/ExceptionEventName.html#ICE_CONNECTION_DISCONNECTED) to perform an automatic reconnection process of the affected media stream. * This automatic reconnection process can only take place if the client still has network connection to OpenVidu Server. If the ICE connection has broken because of a total network drop, * then no reconnection process will be possible at all. * @@ -65,7 +65,7 @@ export interface OpenViduAdvancedConfiguration { iceConnectionDisconnectedExceptionTimeout?: number; /** - * The milliseconds that must elapse for the [[ExceptionEvent]] of name [`NO_STREAM_PLAYING_EVENT`](/en/stable/api/openvidu-browser/enums/exceptioneventname.html#no_stream_playing_event) to be fired. + * The milliseconds that must elapse for the [[ExceptionEvent]] of name [`NO_STREAM_PLAYING_EVENT`](/en/stable/api/openvidu-browser/enums/ExceptionEventName.html#NO_STREAM_PLAYING_EVENT) to be fired. * * Default to `4000`. */ diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java index 2e3a01e0..b838e43e 100644 --- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java +++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Connection.java @@ -65,7 +65,7 @@ public class Connection { *
pending
: if the Connection is waiting for any user to use
* its internal token to connect to the session, calling method Session.connect in OpenVidu Browser.active
: if the internal token of the Connection has already
* been used by some user to connect to the session, and it cannot be used
@@ -194,7 +194,7 @@ public class Connection {
* Returns the token string associated to the Connection. This is the value that
* must be sent to the client-side to be consumed in OpenVidu Browser method
* Session.connect.
*/
public String getToken() {
@@ -234,7 +234,7 @@ public class Connection {
/**
* Returns the data associated to the connection on the client-side. This value
* is set with second parameter of method Session.connect in OpenVidu Browser
*/
public String getClientData() {
diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java
index 7eeefe0e..5edf7b02 100644
--- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java
+++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Publisher.java
@@ -24,7 +24,7 @@ import com.google.gson.JsonObject;
*
* Stream.streamId
*/
public String getStreamId() {
@@ -66,7 +66,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
@@ -76,7 +76,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
@@ -86,7 +86,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
@@ -96,7 +96,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
@@ -106,7 +106,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
@@ -116,7 +116,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
@@ -126,7 +126,7 @@ public class Publisher {
/**
* See properties of Stream object in OpenVidu Browser library to find out
* more
*/
diff --git a/openvidu-java-client/src/main/java/io/openvidu/java/client/Session.java b/openvidu-java-client/src/main/java/io/openvidu/java/client/Session.java
index 3f7d7678..1fb2d396 100644
--- a/openvidu-java-client/src/main/java/io/openvidu/java/client/Session.java
+++ b/openvidu-java-client/src/main/java/io/openvidu/java/client/Session.java
@@ -474,7 +474,7 @@ public class Session {
*