RxSwift
-
A type-erased
ObserverType.Forwards operations to an arbitrary underlying observer with the same
See moreElementtype, hiding the specifics of the underlying observer type.Declaration
Swift
public struct AnyObserver<Element> : ObserverType -
Observer that enforces interface binding rules:
- can’t bind errors (in debug builds binding of errors causes
fatalErrorin release builds errors are being logged) - ensures binding is performed on a specific scheduler
Binderdoesn’t retain target and in case target is released, element isn’t bound.By default it binds elements on main scheduler.
See moreDeclaration
Swift
public struct Binder<Value> : ObserverType - can’t bind errors (in debug builds binding of errors causes
-
Represents disposable resource with state tracking.
See moreDeclaration
Swift
public protocol Cancelable : Disposable -
Represents an observable sequence wrapper that can be connected and disconnected from its underlying observable sequence.
See moreDeclaration
Swift
public protocol ConnectableObservableType : ObservableType -
Represents a disposable resource.
See moreDeclaration
Swift
public protocol Disposable -
Declaration
Swift
@frozen public enum Event<Element>extension Event: CustomDebugStringConvertibleextension Event: EventConvertible -
Represents an observable sequence of elements that share a common key.
GroupedObservableis typically created by thegroupByoperator. EachGroupedObservableinstance represents a collection of elements that are grouped by a specific key.Example usage:
let observable = Observable.of("Apple", "Banana", "Apricot", "Blueberry", "Avocado") let grouped = observable.groupBy { fruit in fruit.first! // Grouping by the first letter of each fruit } _ = grouped.subscribe { group in print("Group: \(group.key)") _ = group.subscribe { event in print(event) } }This will print:
See moreGroup: A next(Apple) next(Apricot) next(Avocado) Group: B next(Banana) next(Blueberry)Declaration
Swift
public struct GroupedObservable<Key, Element> : ObservableType -
Represents an object that immediately schedules units of work.
See moreDeclaration
Swift
public protocol ImmediateSchedulerType -
Undocumented
See moreDeclaration
Swift
public class Observable<Element> : ObservableType -
Type that can be converted to observable sequence (
See moreObservable<Element>).Declaration
Swift
public protocol ObservableConvertibleType -
Represents a push style sequence.
See moreDeclaration
Swift
public protocol ObservableType : ObservableConvertibleType -
Supports push-style iteration over an observable sequence.
See moreDeclaration
Swift
public protocol ObserverType -
Use
Reactiveproxy as customization point for constrained protocol extensions.General pattern would be:
// 1. Extend Reactive protocol with constrain on Base // Read as: Reactive Extension where Base is a SomeType extension Reactive where Base: SomeType { // 2. Put any specific reactive extension for SomeType here }
With this approach we can have more specialized methods and properties using
Baseand not just specialized on common base type.
See moreBinders are also automatically synthesized using@dynamicMemberLookupfor writable reference properties of the reactive base.Declaration
Swift
@dynamicMemberLookup public struct Reactive<Base> -
Represents an object that schedules units of work.
See moreDeclaration
Swift
public protocol SchedulerType : ImmediateSchedulerType
View on GitHub
RxSwift Reference