File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -470,13 +470,25 @@ You can dynamically change the layout type of a live streaming broadcast.
470
470
For more information about OpenTok live streaming broadcasts, see the
471
471
`Broadcast developer guide <https://tokbox.com/developer/guides/broadcast/ >`_.
472
472
473
- Configuring Timeout
473
+ Configuring / Customizing Timeout
474
474
-------
475
475
Timeout is passed in the OpenTok constructor:
476
476
477
- ```self.timeout = timeout` ``
477
+ ```python
478
+ self.timeout = timeout
479
+ ` ``
478
480
479
- The solution is to create an instance: opentok = OpenTok(...., timeout=value) and then the value can be changed later with opentok.timeout = value
481
+ In order to configure timeout, first create an instance:
482
+
483
+ ```python
484
+ opentok = OpenTok(...., timeout=value)
485
+ ` ``
486
+
487
+ And then proceed to change the value with
488
+
489
+ ```python
490
+ opentok.timeout = value
491
+ ` ``
480
492
481
493
Samples
482
494
-------
You can’t perform that action at this time.
0 commit comments