Skip to content

Commit

Permalink
docs(MIGRATION): add timeoutWith operator split
Browse files Browse the repository at this point in the history
closes #1872
  • Loading branch information
kwonoj committed Aug 31, 2016
1 parent c53a0dd commit 4013116
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,15 @@ To reduce polymorphism and get better performance out of operators, some operato
<td><code>delay(subscriptionDelay?: Observable<any>, delayDurationSelector: function)</code></td>
<td><code>delayWhen(delayDurationSelector: function, subscriptionDelay?: Observable<any>)</code></td>
</tr>
<tr>
<td rowspan="2"><code>timeout</code></td>
<td><code>timeout(dueTime: number | Date, other?: Error, scheduler?: Scheduler)</code></td>
<td><code>timeout(due: number | Date, errorToSend?: any, scheduler?: Scheduler)</code></td>
</tr>
<tr>
<td><code>timeout(dueTime: number | Date, other?: Observable | Promise, scheduler?: Scheduler)</code></td>
<td><code>timeoutWith(due: number | Date, withObservable: ObservableInput, scheduler: Scheduler)</code></td>
</tr>
</tbody>
</table>

Expand Down

0 comments on commit 4013116

Please sign in to comment.