* Cantinho Satkeys

Refresh History
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  4tj97u<z
    06 de Julho de 2025, 11:43
  • j.s.: [link]
    05 de Julho de 2025, 16:31
  • j.s.: dgtgtr a todos  4tj97u<z
    05 de Julho de 2025, 16:31
  • j.s.: h7t45 ao convidado de Honra batatinha pela sua ajuda
    05 de Julho de 2025, 16:30
  • FELISCUNHA: ghyt74  pessoal   4tj97u<z
    04 de Julho de 2025, 11:58
  • JPratas: dgtgtr Pessoal  101041 Vamos Todos Ajudar na Manutenção do Forum, Basta 1 Euro a Cada Um  43e5r6
    03 de Julho de 2025, 19:02
  • cereal killa: Todos os anos e preciso sempre a pedir esmolas e um simples gesto de nem que seja 1€ que fosse dividido por alguns ajudava, uma coisa e certa mesmo continuando isto vai levar volta a como se tem acesso aos tópicos, nunca se quis implementar esta ideia mas quem não contribuir e basta 1 € por ano não terá acesso a sacar nada, vamos ver desenrolar disto mais ate dia 7,finalmente um agradecimento em nome do satkeys a quem já fez a sua doação, obrigada
    03 de Julho de 2025, 15:07
  • m1957: Por favor! Uma pequena ajuda, não deixem que o fórum ecerre. Obrigado!
    03 de Julho de 2025, 01:10
  • j.s.: [link]
    02 de Julho de 2025, 21:09
  • j.s.: h7t45 ao membro anónimo pela sua ajuda  49E09B4F
    02 de Julho de 2025, 21:09
  • j.s.: dgtgtr a todos  4tj97u<z
    01 de Julho de 2025, 17:18
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  4tj97u<z
    29 de Junho de 2025, 11:59
  • m1957: Foi de boa vontade!
    28 de Junho de 2025, 00:39
  • j.s.: passem f.v. por aqui [link]    h7t45
    27 de Junho de 2025, 17:20
  • j.s.: renovamos o nosso pedido para uma pequena ajuda para pagemento  do nosso forum
    27 de Junho de 2025, 17:19
  • j.s.: h7t45 aos convidados de honra Felizcunha e M1957 pela ajuda
    27 de Junho de 2025, 17:15
  • j.s.: dgtgtr a todos  4tj97u<z
    27 de Junho de 2025, 17:13
  • FELISCUNHA: ghyt74  pessoal  4tj97u<z
    27 de Junho de 2025, 11:51
  • JPratas: try65hytr A Todos  classic k7y8j0
    27 de Junho de 2025, 04:35
  • m1957: Por favor vaamos todos dar uma pequena ajuda, para não deixar encerrar o fórum! Obrigado.
    26 de Junho de 2025, 23:45

Autor Tópico: Learning Rxjs The Right Way  (Lida 73 vezes)

0 Membros e 1 Visitante estão a ver este tópico.

Offline mitsumi

  • Sub-Administrador
  • ****
  • Mensagens: 121842
  • Karma: +0/-0
Learning Rxjs The Right Way
« em: 23 de Dezembro de 2022, 04:16 »


Last updated 12/2020
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 1.04 GB | Duration: 2h 7m

Step by Step guide to understanding the Rxjs Library

What you'll learn
Rxjs Basics
Rxjs Subjects
Rxjs Operators
Rxjs Subscription
Understanding Rxjs in more depth
Creational, Join, Transformational Operators
Error Handling in Rxjs
Requirements
Knowledge of Javascript is important
Description
RxJS is a library for composing asynchronous and event-based programs by using observable sequences. It provides one core type, the Observable, satellite types (Observer, Schedulers, Subjects) and operators inspired by Array#extras (map, filter, reduce, every, etc) to allow handling asynchronous events as collections.Think of RxJS as Lodash for events.ReactiveX combines the Observer pattern with the Iterator pattern and functional programming with collections to fill the need for an ideal way of managing sequences of events.The essential concepts in RxJS which solve async event management are:Observable: represents the idea of an invokable collection of future values or events.Observer: is a collection of callbacks that knows how to listen to values delivered by the Observable.Subscription: represents the execution of an Observable, is primarily useful for cancelling the execution.Operators: are pure functions that enable a functional programming style of dealing with collections with operations like map, filter, concat, reduce, etc.Subject: is the equivalent to an EventEmitter, and the only way of multicasting a value or event to multiple Observers.Schedulers: are centralized dispatchers to control concurrency, allowing us to coordinate when computation happens on e.g. setTimeout or requestAnimationFrame or others.Conceptually promises are a subset of observables. Promise is a value that will resolve asynchronously. Most typical example ishttp requests. Observables deal with sequence of asynchronous events. These events could be mouse positions, clicks, user input etc. So one could say observables are richer and more complex abstraction for handling asynchronicity.So, calling observables as promises + helper methods is an oversimplification. The answer to your question depends on whether you need to deal with sequence of events or if you can live with "simple" synchronicity.
Overview
Section 1: Rxjs Basics
Lecture 1 Rxjs Overview
Lecture 2 Rxjs setup on Local Machine
Lecture 3 Observables
Lecture 4 Observers
Section 2: Creational Operators
Lecture 5 What are Operators
Lecture 6 $ajax Operator
Lecture 7 bindCallback
Lecture 8 RxJs Empty, FromEvent, and Interval
Lecture 9 range operator
Lecture 10 throwError
Section 3: Join Creation Operators
Lecture 11 Concat
Lecture 12 ForkJoin
Lecture 13 Merge and mapTo
Lecture 14 Partition
Lecture 15 race
Section 4: Transformation Operators
Lecture 16 buffer
Lecture 17 concatMap
Lecture 18 map
Lecture 19 mergeMap
Lecture 20 switchMap
Lecture 21 scan
Lecture 22 toArray
Section 5: Filtering
Lecture 23 Filter
Lecture 24 Find
Lecture 25 take
Lecture 26 first
Lecture 27 skip
Lecture 28 ignoreElements
Section 6: Utility
Lecture 29 tap
Lecture 30 delay
Lecture 31 finalize
Lecture 32 repeat
Section 7: Error Handling
Lecture 33 CatchError
Lecture 34 retry
Section 8: Subscription, Subject and Scheduler
Lecture 35 Subscription
Lecture 36 Subjects Demo
Lecture 37 Async Subject
Lecture 38 Behaviour Subject
Beginner Angular developers who want to learn Rxjs in more depth,Javascript/NodeJs developers who want to learn Asynchronous programming pattrern


Download link

rapidgator.net:
Citar
https://rapidgator.net/file/b287cb9b244d502bcbb63a51a029a32e/rbiks.Learning.Rxjs.The.Right.Way.part1.rar.html
https://rapidgator.net/file/9badb926f04b05956bfd3a739469d803/rbiks.Learning.Rxjs.The.Right.Way.part2.rar.html

uploadgig.com:
Citar
https://uploadgig.com/file/download/558f6C90d06Af613/rbiks.Learning.Rxjs.The.Right.Way.part1.rar
https://uploadgig.com/file/download/050eBfC91e932d90/rbiks.Learning.Rxjs.The.Right.Way.part2.rar

nitroflare.com:
Citar
https://nitroflare.com/view/FE05CD6D4AE9D67/rbiks.Learning.Rxjs.The.Right.Way.part1.rar
https://nitroflare.com/view/3C3445EE7A31987/rbiks.Learning.Rxjs.The.Right.Way.part2.rar

1dl.net:
Citar
https://1dl.net/299y4pq3fwmn/rbiks.Learning.Rxjs.The.Right.Way.part1.rar
https://1dl.net/kfneprnppi5f/rbiks.Learning.Rxjs.The.Right.Way.part2.rar