forked from ReactiveX/reactivex.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (22 loc) · 873 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
title: ReactiveX - home
---
<div id="home">
<h1>News</h1>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ site.baseurl}}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<p>
RxJava is a Java VM implementation of <a href="https://rx.codeplex.com">Reactive Extensions</a>:
a library for composing asynchronous and event-based programs by using observable sequences.
</p>
<p>
It extends the <a href="http://en.wikipedia.org/wiki/Observer_pattern">observer pattern</a>
to support sequences of data/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.
</p>
</div>