Skip to content

Commit da104c2

Browse files
committed
Replacing Netflix/RxJava with ReactiveX/RxJava
1 parent 301d6c4 commit da104c2

File tree

98 files changed

+2083
-2083
lines changed

Some content is hidden

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

98 files changed

+2083
-2083
lines changed

CHANGES.md

Lines changed: 645 additions & 645 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ When submitting code, please make every effort to follow existing conventions an
66

77
## License
88

9-
By contributing your code, you agree to license your contribution under the terms of the APLv2: https://github.com/Netflix/RxJava/blob/master/LICENSE
9+
By contributing your code, you agree to license your contribution under the terms of the APLv2: https://github.com/ReactiveX/RxJava/blob/master/LICENSE
1010

1111
All files are released with the Apache 2.0 license.
1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ If you need to download the jars instead of using a build system, create a Maven
7373
<artifactId>rxjava-download</artifactId>
7474
<version>1.0-SNAPSHOT</version>
7575
<name>Simple POM to download rxjava</name>
76-
<url>http://github.com/Netflix/RxJava</url>
76+
<url>http://github.com/ReactiveX/RxJava</url>
7777
<dependencies>
7878
<dependency>
7979
<groupId>io.reactivex.rxjava</groupId>

operators.html

Lines changed: 190 additions & 190 deletions
Large diffs are not rendered by default.

operators.md

Lines changed: 190 additions & 190 deletions
Large diffs are not rendered by default.

rxjava-contrib/rxjava-async-util/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jar {
1414
manifest {
1515
name = 'rxjava-async-util'
1616
instruction 'Bundle-Vendor', 'Netflix'
17-
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
17+
instruction 'Bundle-DocURL', 'https://github.com/ReactiveX/RxJava'
1818
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
1919
instruction 'Fragment-Host', 'com.netflix.rxjava.core'
2020
}

rxjava-contrib/rxjava-async-util/src/main/java/rx/util/async/Async.java

Lines changed: 134 additions & 134 deletions
Large diffs are not rendered by default.

rxjava-contrib/rxjava-async-util/src/main/java/rx/util/async/StoppableObservable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* An Observable that provides a Subscription interface to signal a stop condition to an asynchronous task.
2323
*
24-
* @see <a href="https://github.com/Netflix/RxJava/wiki/Async-Operators#wiki-runasync">RxJava Wiki: runAsync()</a>
24+
* @see <a href="https://github.com/ReactiveX/RxJava/wiki/Async-Operators#wiki-runasync">RxJava Wiki: runAsync()</a>
2525
*/
2626
public class StoppableObservable<T> extends Observable<T> implements Subscription {
2727
private final Subscription token;

rxjava-contrib/rxjava-computation-expressions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jar {
1414
manifest {
1515
name = 'rxjava-computation-expressions'
1616
instruction 'Bundle-Vendor', 'Netflix'
17-
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
17+
instruction 'Bundle-DocURL', 'https://github.com/ReactiveX/RxJava'
1818
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
1919
instruction 'Fragment-Host', 'com.netflix.rxjava.core'
2020
}

rxjava-contrib/rxjava-computation-expressions/src/main/java/rx/Statement.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public final class Statement {
3131
* Return a particular one of several possible Observables based on a case
3232
* selector.
3333
* <p>
34-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.png" alt="">
34+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchCase.png" alt="">
3535
*
3636
* @param <K>
3737
* the case key type
@@ -55,7 +55,7 @@ public static <K, R> Observable<R> switchCase(Func0<? extends K> caseSelector,
5555
* Return a particular one of several possible Observables based on a case
5656
* selector and run it on the designated scheduler.
5757
* <p>
58-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.s.png" alt="">
58+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchCase.s.png" alt="">
5959
*
6060
* @param <K>
6161
* the case key type
@@ -82,7 +82,7 @@ public static <K, R> Observable<R> switchCase(Func0<? extends K> caseSelector,
8282
* selector, or a default Observable if the case selector does not map to
8383
* a particular one.
8484
* <p>
85-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/switchCase.png" alt="">
85+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/switchCase.png" alt="">
8686
*
8787
* @param <K>
8888
* the case key type
@@ -109,7 +109,7 @@ public static <K, R> Observable<R> switchCase(Func0<? extends K> caseSelector,
109109
* Observable, and then continues to replay them so long as a condtion is
110110
* true.
111111
* <p>
112-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/doWhile.png" alt="">
112+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/doWhile.png" alt="">
113113
*
114114
* @param postCondition
115115
* the post condition to test after the source
@@ -126,7 +126,7 @@ public static <T> Observable<T> doWhile(Observable<? extends T> source, Func0<Bo
126126
* Return an Observable that replays the emissions from the source
127127
* Observable so long as a condtion is true.
128128
* <p>
129-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/whileDo.png" alt="">
129+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/whileDo.png" alt="">
130130
*
131131
* @param preCondition
132132
* the condition to evaluate before subscribing to or
@@ -142,7 +142,7 @@ public static <T> Observable<T> whileDo(Observable<? extends T> source, Func0<Bo
142142
* Return an Observable that emits the emissions from a specified Observable
143143
* if a condition evaluates to true, otherwise return an empty Observable.
144144
* <p>
145-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.png" alt="">
145+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/ifThen.png" alt="">
146146
*
147147
* @param <R>
148148
* the result value type
@@ -163,7 +163,7 @@ public static <R> Observable<R> ifThen(Func0<Boolean> condition, Observable<? ex
163163
* if a condition evaluates to true, otherwise return an empty Observable
164164
* that runs on a specified Scheduler.
165165
* <p>
166-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.s.png" alt="">
166+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/ifThen.s.png" alt="">
167167
*
168168
* @param <R>
169169
* the result value type
@@ -187,7 +187,7 @@ public static <R> Observable<R> ifThen(Func0<Boolean> condition, Observable<? ex
187187
* Observable if a condition evaluates to true, or from another specified
188188
* Observable otherwise.
189189
* <p>
190-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/ifThen.e.png" alt="">
190+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/ifThen.e.png" alt="">
191191
*
192192
* @param <R>
193193
* the result value type

0 commit comments

Comments
 (0)