A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
Pattern — class, package raix.reactive
A combination of multiple IObservable sequences that can be combined into a Plan Generally, a Pattern will be created using IObservable.and or Pattern.and(), rather than creating a Pattern directly
Pattern(sources:Array) — Constructor, class raix.reactive.Pattern
peek(nextAction:Function, completeAction:Function, errorAction:Function) — method, class raix.reactive.AbsObservable
Allows custom code to be run when messages arrive without affecting the observer
peek(next:Function, complete:Function, error:Function) — method, interface raix.reactive.IObservable
Allows custom code to be run when messages arrive without affecting the observer
peekWith(observer:raix.reactive:IObserver) — method, class raix.reactive.AbsObservable
Allows custom code to be run when messages arrive without affecting the observer
peekWith(observer:raix.reactive:IObserver) — method, interface raix.reactive.IObservable
Allows custom code to be run when messages arrive without affecting the observer
Plan — class, package raix.reactive
A combination of IObservable sequences and a selector that will map the values of those sequences to an output value.
Plan(sources:Array, selector:Function) — Constructor, class raix.reactive.Plan
Projection — class, package raix.utils
Contains common projection functions that can be used with IEnumerable.map and other
property(propertyName:String) — Static Method , class raix.utils.Projection
Returns a selector function that retrieves a property from an element.
prune(scheduler:raix.reactive.scheduling:IScheduler) — method, class raix.reactive.AbsObservable
Creates a shared sequence that emits the last value of the source sequence
prune(scheduler:raix.reactive.scheduling:IScheduler) — method, interface raix.reactive.IObservable
Creates a shared sequence that emits the last value of the source sequence
pruneDefer(selector:Function, scheduler:raix.reactive.scheduling:IScheduler) — method, class raix.reactive.AbsObservable
Creates a shared sequence that emits the last value of the source sequence, the shared sequence will be passed to the selector function when the sequence is subscribed to.
pruneDefer(selector:Function, scheduler:raix.reactive.scheduling:IScheduler) — method, interface raix.reactive.IObservable
Creates a shared sequence that emits the last value of the source sequence, the shared sequence will be passed to the selector function when the sequence is subscribed to.
publish() — method, class raix.reactive.AbsObservable
Creates a connectable sequence that can be shared by multiple observers
publish() — method, interface raix.reactive.IObservable
Creates a connectable sequence that can be shared by multiple observers
publishDefer(selector:Function) — method, class raix.reactive.AbsObservable
Creates a shared sequence that can be used by multiple subscribers, the shared sequence will be passed to the selector function when the sequence is subscribed to.
publishDefer(selector:Function) — method, interface raix.reactive.IObservable
Creates a shared sequence that can be used by multiple subscribers, the shared sequence will be passed to the selector function when the sequence is subscribed to.
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z