Skip to content

Commit ec570b9

Browse files
1.0.0-rc.10
1 parent fdba6f9 commit ec570b9

File tree

117 files changed

+444
-274
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+444
-274
lines changed

javadoc/allclasses-frame.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>All Classes (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/allclasses-noframe.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>All Classes (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/constant-values.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>Constant Field Values (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/deprecated-list.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>Deprecated List (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/help-doc.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>API Help (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/index-all.html

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>Index (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
99
</head>
1010
<body>
@@ -1985,6 +1985,13 @@ <h2 class="title">R</h2>
19851985
emitted by an Observable into the same function, and so on until all items have been emitted by the
19861986
source Observable, emitting the final result from the final call to your function as its sole item.</div>
19871987
</dd>
1988+
<dt><span class="strong"><a href="./rx/Observable.html#reduce(rx.functions.Func0, rx.functions.Func2)">reduce(Func0&lt;R&gt;, Func2&lt;R, ? super T, R&gt;)</a></span> - Method in class rx.<a href="./rx/Observable.html" title="class in rx">Observable</a></dt>
1989+
<dd>
1990+
<div class="block">Returns an Observable that applies a function of your choosing to the first item emitted by a source
1991+
Observable and a specified seed value, then feeds the result of that function along with the second item
1992+
emitted by an Observable into the same function, and so on until all items have been emitted by the
1993+
source Observable, emitting the final result from the final call to your function as its sole item.</div>
1994+
</dd>
19881995
<dt><span class="strong"><a href="./rx/observables/ConnectableObservable.html#refCount()">refCount()</a></span> - Method in class rx.observables.<a href="./rx/observables/ConnectableObservable.html" title="class in rx.observables">ConnectableObservable</a></dt>
19891996
<dd>
19901997
<div class="block">Returns an <code>Observable</code> that stays connected to this <code>ConnectableObservable</code> as long as there
@@ -2272,6 +2279,13 @@ <h2 class="title">S</h2>
22722279
the source Observable into the same function, and so on until all items have been emitted by the source
22732280
Observable, emitting the result of each of these iterations.</div>
22742281
</dd>
2282+
<dt><span class="strong"><a href="./rx/Observable.html#scan(rx.functions.Func0, rx.functions.Func2)">scan(Func0&lt;R&gt;, Func2&lt;R, ? super T, R&gt;)</a></span> - Method in class rx.<a href="./rx/Observable.html" title="class in rx">Observable</a></dt>
2283+
<dd>
2284+
<div class="block">Returns an Observable that applies a function of your choosing to the first item emitted by a source
2285+
Observable and a seed value, then feeds the result of that function along with the second item emitted by
2286+
the source Observable into the same function, and so on until all items have been emitted by the source
2287+
Observable, emitting the result of each of these iterations.</div>
2288+
</dd>
22752289
<dt><span class="strong"><a href="./rx/Scheduler.Worker.html#schedule(rx.functions.Action0)">schedule(Action0)</a></span> - Method in class rx.<a href="./rx/Scheduler.Worker.html" title="class in rx">Scheduler.Worker</a></dt>
22762290
<dd>
22772291
<div class="block">Schedules an Action for execution.</div>
@@ -2967,6 +2981,10 @@ <h2 class="title">T</h2>
29672981
contains a custom collection of values, extracted by a specified <code>valueSelector</code> function from
29682982
items emitted by the source Observable, and keyed by the <code>keySelector</code> function.</div>
29692983
</dd>
2984+
<dt><span class="strong"><a href="./rx/subjects/Subject.html#toSerialized()">toSerialized()</a></span> - Method in class rx.subjects.<a href="./rx/subjects/Subject.html" title="class in rx.subjects">Subject</a></dt>
2985+
<dd>
2986+
<div class="block">Wraps a <a href="./rx/subjects/Subject.html" title="class in rx.subjects"><code>Subject</code></a> so that it is safe to call its various <code>on</code> methods from different threads.</div>
2987+
</dd>
29702988
<dt><span class="strong"><a href="./rx/Observable.html#toSortedList()">toSortedList()</a></span> - Method in class rx.<a href="./rx/Observable.html" title="class in rx">Observable</a></dt>
29712989
<dd>
29722990
<div class="block">Returns an Observable that emits a list that contains the items emitted by the source Observable, in a

javadoc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>RxJava Javadoc 1.0.0</title>
77
<script type="text/javascript">
88
targetPage = "" + window.location.search;

javadoc/overview-frame.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>Overview List (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/overview-summary.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>Overview (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/overview-tree.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:42 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:17 PST 2014 -->
66
<title>Class Hierarchy (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/rx/Notification.Kind.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:37 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:12 PST 2014 -->
66
<title>Notification.Kind (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/rx/Notification.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:37 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:12 PST 2014 -->
66
<title>Notification (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/rx/Observable.OnSubscribe.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:38 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:13 PST 2014 -->
66
<title>Observable.OnSubscribe (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/rx/Observable.Operator.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:38 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:13 PST 2014 -->
66
<title>Observable.Operator (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
</head>
1010
<body>

javadoc/rx/Observable.Transformer.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (version 1.7.0_45) on Mon Nov 03 08:05:38 PST 2014 -->
5+
<!-- Generated by javadoc (version 1.7.0_45) on Sat Nov 08 20:47:13 PST 2014 -->
66
<title>Observable.Transformer (RxJava Javadoc 1.0.0)</title>
7-
<meta name="date" content="2014-11-03">
7+
<meta name="date" content="2014-11-08">
88
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
99
</head>
1010
<body>

0 commit comments

Comments
 (0)