* Returns a new supervisor that performs the function of this supervisor, and * the function of the specified supervisor, producing a tuple of the outputs * produced by both supervisors.
(right: Supervisor<A>)
| 83 | * produced by both supervisors. |
| 84 | */ |
| 85 | zip<A>(right: Supervisor<A>): Supervisor<[T, A]> |
| 86 | } |
| 87 | |
| 88 | /** |
no outgoing calls