Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 467 Bytes

take_until.md

File metadata and controls

13 lines (8 loc) · 467 Bytes

[TakeUntil Operator](@id operator_take_until)

take_until

Description

take_until subscribes and begins mirroring the source Observable. It also monitors a second Observable, notifier that you provide. If the notifier emits a value, the output Observable stops mirroring the source Observable and completes. If the notifier doesn't emit any value and completes then take_until also completes.

See also

[Operators](@ref what_are_operators)