はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    参議院選挙2025

『ReactiveX』

  • 人気
  • 新着
  • すべて
  • Redirecting to new RxJS docs...

    11 users

    reactivex.io

    Redirecting to newer docs Sorry for the inconvenience. We're moving our documentation to a new place. Redirecting you to a temporary site for now... If you're not redirected, click here

    • テクノロジー
    • 2016/07/25 19:41
    • RxJS
    • Rx
    • js
    • javascript
    • Observable | RxJS API Document

      3 users

      reactivex.io

      A representation of any set of values over any amount of time. This is the most basic building block of RxJS.

      • テクノロジー
      • 2016/05/18 17:48
      • Overview

        10 users

        reactivex.io

        Introduction 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

        • 学び
        • 2016/04/28 09:30
        • RxJS
        • ReactiveX - Observable

          8 users

          reactivex.io

          In ReactiveX an observer subscribes to an Observable. Then that observer reacts to whatever item or sequence of items the Observable emits. This pattern facilitates concurrent operations because it does not need to block while waiting for the Observable to emit objects, but instead it creates a sentry in the form of an observer that stands ready to react appropriately at whatever future time the O

          • テクノロジー
          • 2016/02/21 05:08
          • java
          • programming
          • ReactiveX - CombineLatest operator

            5 users

            reactivex.io

            when an item is emitted by either of two Observables, combine the latest item emitted by each Observable via a specified function and emit items based on the results of this function The CombineLatest operator behaves in a similar way to Zip, but while Zip emits items only when each of the zipped source Observables have emitted a previously unzipped item, CombineLatest emits an item whenever any o

            • 学び
            • 2015/10/24 01:19
            • Functional Programming in Javascript

              11 users

              reactivex.io

              This is an interactive learning course with exercises you fill out right in the browser. If you just want to browse the content click the button below: Show all the answers so I can just browse. Functional Programming in Javascript This is a series of interactive exercises for learning Microsoft's Reactive Extensions (Rx) Library for Javascript. So why is the title "Functional Programming in Javas

              • テクノロジー
              • 2015/09/27 12:11
              • rxjs
              • functional
              • JavaScript
              • tutorial
              • ReactiveX - Subject

                5 users

                reactivex.io

                A Subject is a sort of bridge or proxy that is available in some implementations of ReactiveX that acts both as an observer and as an Observable. Because it is an observer, it can subscribe to one or more Observables, and because it is an Observable, it can pass through the items it observes by reemitting them, and it can also emit new items. Because a Subject subscribes to an Observable, it will

                • 世の中
                • 2015/05/31 10:46
                • ReactiveX - Intro

                  6 users

                  reactivex.io

                  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-bl

                  • 暮らし
                  • 2015/05/13 11:09
                  • ReactiveX - Links to More Information

                    6 users

                    reactivex.io

                    Introductions Introduction to Rx: a free, on-line book by Lee Campbell Your Mouse is a Database by Erik Meijer The introduction to Reactive Programming you’ve been missing by André Staltz Mastering Observables from the Couchbase documentation 33rd Degree Reactive Java by Tomasz Kowalczewski 2 minute introduction to Rx by André Staltz Wikipedia: Reactive Programming and Functional Reactive Programm

                    • テクノロジー
                    • 2015/04/20 10:49
                    • Rx
                    • ReactiveX - Operators

                      11 users

                      reactivex.io

                      Introduction Each language-specific implementation of ReactiveX implements a set of operators. Although there is much overlap between implementations, there are also some operators that are only implemented in certain implementations. Also, each implementation tends to name its operators to resemble those of similar methods that are already familiar from other contexts in that language. Chaining O

                      • テクノロジー
                      • 2015/02/18 00:59
                      • rxjs
                      • Rx
                      • .NET
                      • RxScala

                        3 users

                        reactivex.io

                        RxScala RxScala brings Reactive Extensions to Scala. Rx was first implemented for .NET, and is now also available in Java. The RxScala project is an adaptor for RxJava. Its code is in a seperate repository and it’s also distributed on Maven Central. Get started by looking at RxScalaDemo.scala, the RxScala examples, or the Scaladoc. There’s also a comparison table between Java Observable and Scala

                        • テクノロジー
                        • 2015/01/14 19:51
                        • ReactiveX

                          96 users

                          reactivex.io

                          ReactiveX An API for asynchronous programming with observable streams Choose your platform The Observer pattern done right ReactiveX is a combination of the best ideas from the Observer pattern, the Iterator pattern, and functional programming

                          • 政治と経済
                          • 2014/09/08 00:11
                          • Rx
                          • reactivex
                          • reactive
                          • programming
                          • reactive_programming
                          • frp
                          • tutorial
                          • C#
                          • .NET

                          このページはまだ
                          ブックマークされていません

                          このページを最初にブックマークしてみませんか?

                          『ReactiveX』の新着エントリーを見る

                          キーボードショートカット一覧

                          j次のブックマーク

                          k前のブックマーク

                          lあとで読む

                          eコメント一覧を開く

                          oページを開く

                          はてなブックマーク

                          • 総合
                          • 一般
                          • 世の中
                          • 政治と経済
                          • 暮らし
                          • 学び
                          • テクノロジー
                          • エンタメ
                          • アニメとゲーム
                          • おもしろ
                          • アプリ・拡張機能
                          • 開発ブログ
                          • ヘルプ
                          • お問い合わせ
                          • ガイドライン
                          • 利用規約
                          • プライバシーポリシー
                          • 利用者情報の外部送信について
                          • ガイドライン
                          • 利用規約
                          • プライバシーポリシー
                          • 利用者情報の外部送信について

                          公式Twitter

                          • 公式アカウント
                          • ホットエントリー

                          はてなのサービス

                          • はてなブログ
                          • はてなブログPro
                          • 人力検索はてな
                          • はてなブログ タグ
                          • はてなニュース
                          • ソレドコ
                          • App Storeからダウンロード
                          • Google Playで手に入れよう
                          Copyright © 2005-2025 Hatena. All Rights Reserved.
                          設定を変更しましたx