RxSwift/Documentation/Subjects.md
2018-07-19 20:34:06 +02:00

400 B

Subjects

All of behave exactly the same like described here

Relays

RxCocoa provides two kinds of Relays: PublishRelay and BehaviorRelay. They behave exactly like their parallel Subjects, with two changes:

  • Relays never complete.
  • Relays never emit errors.

In essence, Relays only emit .next events, and never terminate.