🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 08:14:56 | PHP 8.2.32
📂
/ (Root)
/
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
reactivex
/
operators
📍 /opt/alt/python38/lib/python3.8/site-packages/reactivex/operators
🔄 Refresh
✏️
Editing: _forkjoin.py
Read Only
from typing import Any, Callable, Tuple import reactivex from reactivex import Observable def fork_join_( *args: Observable[Any], ) -> Callable[[Observable[Any]], Observable[Tuple[Any, ...]]]: def fork_join(source: Observable[Any]) -> Observable[Tuple[Any, ...]]: """Wait for observables to complete and then combine last values they emitted into a tuple. Whenever any of that observables completes without emitting any value, result sequence will complete at that moment as well. Examples: >>> obs = fork_join(source) Returns: An observable sequence containing the result of combining last element from each source in given sequence. """ return reactivex.fork_join(source, *args) return fork_join __all__ = ["fork_join_"]
💾 Save Changes
❌ Cancel