RxSwift

  • A type-erased ObserverType.

    Forwards operations to an arbitrary underlying observer with the same Element type, hiding the specifics of the underlying observer type.

    See more

    Declaration

    Swift

    public struct AnyObserver<Element> : ObserverType
  • Observer that enforces interface binding rules:

    • can’t bind errors (in debug builds binding of errors causes fatalError in release builds errors are being logged)
    • ensures binding is performed on a specific scheduler

    Binder doesn’t retain target and in case target is released, element isn’t bound.

    By default it binds elements on main scheduler.

    See more

    Declaration

    Swift

    public struct Binder<Value> : ObserverType
  • Represents disposable resource with state tracking.

    See more

    Declaration

    Swift

    public protocol Cancelable : Disposable
  • Represents an observable sequence wrapper that can be connected and disconnected from its underlying observable sequence.

    See more

    Declaration

    Swift

    public protocol ConnectableObservableType : ObservableType
  • Represents a disposable resource.

    See more

    Declaration

    Swift

    public protocol Disposable
  • Represents a sequence event.

    Sequence grammar: next* (error | completed)

    See more

    Declaration

    Swift

    @frozen
    public enum Event<Element>
    extension Event: CustomDebugStringConvertible
    extension Event: EventConvertible
  • Represents an observable sequence of elements that share a common key. GroupedObservable is typically created by the groupBy operator. Each GroupedObservable instance 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:

    Group: A
    next(Apple)
    next(Apricot)
    next(Avocado)
    Group: B
    next(Banana)
    next(Blueberry)
    
    See more

    Declaration

    Swift

    public struct GroupedObservable<Key, Element> : ObservableType
  • Represents an object that immediately schedules units of work.

    See more

    Declaration

    Swift

    public protocol ImmediateSchedulerType
  • Undocumented

    See more

    Declaration

    Swift

    public class Observable<Element> : ObservableType
  • Type that can be converted to observable sequence (Observable<Element>).

    See more

    Declaration

    Swift

    public protocol ObservableConvertibleType
  • Represents a push style sequence.

    See more

    Declaration

    Swift

    public protocol ObservableType : ObservableConvertibleType
  • Supports push-style iteration over an observable sequence.

    See more

    Declaration

    Swift

    public protocol ObserverType
  • Use Reactive proxy 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 Base and not just specialized on common base type.

    Binders are also automatically synthesized using @dynamicMemberLookup for writable reference properties of the reactive base.

    See more

    Declaration

    Swift

    @dynamicMemberLookup
    public struct Reactive<Base>
  • Represents an object that schedules units of work.

    See more

    Declaration

    Swift

    public protocol SchedulerType : ImmediateSchedulerType