• reactiveX沉思(草稿)


    一、第一性原理

    将异步的io、事件解释为observable。并借用observer的一些类概念进行处理。

    ReactiveX is a library for composing asynchronous and event-based programs by using observable sequences.

    It extends the observer pattern to support sequences of data and/or events and adds operators that allow you to compose sequences together declaratively while abstracting away concerns about things like low-level threading, synchronization, thread-safety, concurrent data structures, and non-blocking I/O.

    一、基本要素

    二、范式概念

    Better codebases

    Functional

    Avoid intricate stateful programs, using clean input/output functions over observable streams.

    Less is more

    ReactiveX's operators often reduce what was once an elaborate challenge into a few lines of code.

    Async error handling

    Traditional try/catch is powerless for errors in asynchronous computations, but ReactiveX is equipped with proper mechanisms for handling errors.

    Concurrency made easy

    Observables and Schedulers in ReactiveX allow the programmer to abstract away low-level threading, synchronization, and concurrency issues.

    三、解释系统

  • 相关阅读:
    实验二 递归下降语法分析
    作业十一
    第七次作业逻辑回归实践
    机器学习第六次作业
    第五次作业
    第三次作业k均值算法
    第二次作业
    机器学习作业一
    14次作业
    12 实验二 递归下降语法分析
  • 原文地址:https://www.cnblogs.com/feng9exe/p/11663552.html
Copyright © 2020-2023  润新知