|
|
|
|
|
Timeout (Property) In french: Timeout
The Timeout property is used to get and change the time after which the connection is considered to have "failed". This timeout is taken into account when the StreamConnect function and the Address property are used. The default timeout is set to 2 minutes by default. // Increase timeout MyStream.Timeout = 150000
Syntax
Finding out the timeout before the connection fails Hide the details
<Result> = <Stream name>.Timeout
<Result>: Integer Time after which the connection is considered to have "failed". This timeout is expressed in milliseconds. The default timeout is set to 2 minutes (or 120 000 milliseconds). <Stream name>: Character string Name of the stream or name of the Conference control associated with the stream.
Modifying the timeout before the connection fails Hide the details
<Stream name>.Timeout = <New timeout>
<Stream name>: Character string Name of the stream or name of the Conference control associated with the stream. <New timeout>: Integer ou Duration Time after which the connection is considered to have "failed". This timeout is expressed in milliseconds. The default timeout is set to 2 minutes (or 120 000 milliseconds). This parameter can correspond to: - an integer corresponding to the number of thousands of a second,
- a Duration variable,
- the duration in a readable format (e.g., '1cs' or '10 ms').
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|