1 2 3 4 5 6 7 8 9 10 | 1 1 | import {SymbolShim} from '../util/SymbolShim'; /** * rxSubscriber symbol is a symbol for retreiving an "Rx safe" Observer from an object * "Rx safety" can be defined as an object that has all of the traits of an Rx Subscriber, * including the ability to add and remove subscriptions to the subscription chain and * guarantees involving event triggering (can't "next" after unsubscription, etc). */ export const rxSubscriber = SymbolShim.for('rxSubscriber'); |