rxjs APIs
- Observable
- Subject
- of
- BehaviorSubject
- Subscription
- throwError
- from
- combineLatest
- fromEvent
- merge
- timer
- interval
- ReplaySubject
- forkJoin
- EMPTY
- defer
- concat
- OperatorFunction
- iif
- Observer
- map
- NEVER
- zip
- firstValueFrom
- noop
- filter
- lastValueFrom
- catchError
- isObservable
- switchMap
- tap
- identity
- pipe
- empty
- asyncScheduler
- take
- ObservableInput
- startWith
- AsyncSubject
- asapScheduler
- MonoTypeOperatorFunction
- partition
- Subscriber
- Unsubscribable
- debounceTime
- delay
- range
- SubscriptionLike
- SchedulerLike
- retry
- toArray
- bindNodeCallback
- animationFrameScheduler
- distinctUntilChanged
- first
- takeUntil
- mergeMap
- skip
- withLatestFrom
- shareReplay
- mergeScan
- TimeoutError
- finalize
- concatMap
- using
- last
- race
- skipWhile
- scan
- ObservedValueOf
- share
- takeWhile
- repeat
- observeOn
- endWith
- pluck
- throttleTime
- scheduled
- timeout
- TeardownLogic
- bindCallback
Other Related APIs
rxjs#last TypeScript Examples
The following examples show how to use
rxjs#last.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: search.spec.ts From platyplus with MIT License | 6 votes |
describe('monitor changes', () => {
const expression$ = 'a.b.c'
const given = from([
{ a: { b: { c: 'hello' } } },
{ a: { b: { c: 'world' } } }
])
it('should pass when changing value', (done) => {
given
.pipe(search$(expression$))
.pipe(first())
.subscribe({
next: (result) => {
expect(result).toEqual('hello')
},
error: done
})
given
.pipe(search$(expression$))
.pipe(last())
.subscribe({
next: (result) => {
expect(result).toEqual('world')
done()
},
error: done
})
}, 300)
})