()
| 348 | * The promise will be rejected if a timeout occurs or if the 'configurationDone' request fails. |
| 349 | */ |
| 350 | public configurationSequence(): Promise<any> { |
| 351 | |
| 352 | return this.waitForEvent('initialized', 'configurationSequence').then(event => { |
| 353 | return this.configurationDone(); |
| 354 | }); |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * Returns a promise that will resolve if a 'initialize' and a 'launch' request were successful. |