Skip to content

Commit a4e8dc9

Browse files
committed
Replacing Netflix/RxJava with ReactiveX/RxJava
1 parent 88bd055 commit a4e8dc9

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jar {
2424
manifest {
2525
name = 'rxjava-string'
2626
instruction 'Bundle-Vendor', 'Netflix'
27-
instruction 'Bundle-DocURL', 'https://github.com/Netflix/RxJava'
27+
instruction 'Bundle-DocURL', 'https://github.com/ReactiveX/RxJava'
2828
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
2929
instruction 'Fragment-Host', 'com.netflix.rxjava.core'
3030
}

src/main/java/rx/observables/StringObservable.java

+14-14
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class StringObservable {
4646
* Reads from the bytes from a source {@link InputStream} and outputs {@link Observable} of
4747
* {@code byte[]}s
4848
* <p>
49-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
49+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.from.png" alt="">
5050
*
5151
* @param i
5252
* Source {@link InputStream}
@@ -127,7 +127,7 @@ public Observable<R> call(CloseableResource<S> t1) {
127127
* Reads from the bytes from a source {@link InputStream} and outputs {@link Observable} of
128128
* {@code byte[]}s
129129
* <p>
130-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
130+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.from.png" alt="">
131131
*
132132
* @param i
133133
* Source {@link InputStream}
@@ -163,7 +163,7 @@ public void call(Subscriber<? super byte[]> o) {
163163
* Reads from the characters from a source {@link Reader} and outputs {@link Observable} of
164164
* {@link String}s
165165
* <p>
166-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
166+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.from.png" alt="">
167167
*
168168
* @param i
169169
* Source {@link Reader}
@@ -177,7 +177,7 @@ public static Observable<String> from(final Reader i) {
177177
* Reads from the characters from a source {@link Reader} and outputs {@link Observable} of
178178
* {@link String}s
179179
* <p>
180-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.from.png" alt="">
180+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.from.png" alt="">
181181
*
182182
* @param i
183183
* Source {@link Reader}
@@ -213,7 +213,7 @@ public void call(Subscriber<? super String> o) {
213213
* Decodes a stream the multibyte chunks into a stream of strings that works on infinite streams
214214
* and where handles when a multibyte character spans two chunks.
215215
* <p>
216-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png" alt="">
216+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.decode.png" alt="">
217217
*
218218
* @param src
219219
* @param charsetName
@@ -227,7 +227,7 @@ public static Observable<String> decode(Observable<byte[]> src, String charsetNa
227227
* Decodes a stream the multibyte chunks into a stream of strings that works on infinite streams
228228
* and where handles when a multibyte character spans two chunks.
229229
* <p>
230-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png" alt="">
230+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.decode.png" alt="">
231231
*
232232
* @param src
233233
* @param charset
@@ -242,7 +242,7 @@ public static Observable<String> decode(Observable<byte[]> src, Charset charset)
242242
* and where it handles when a multibyte character spans two chunks.
243243
* This method allows for more control over how malformed and unmappable characters are handled.
244244
* <p>
245-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.decode.png" alt="">
245+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.decode.png" alt="">
246246
*
247247
* @param src
248248
* @param charsetDecoder
@@ -333,7 +333,7 @@ public boolean process(byte[] next, ByteBuffer last, boolean endOfInput) {
333333
/**
334334
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
335335
* <p>
336-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png" alt="">
336+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.encode.png" alt="">
337337
*
338338
* @param src
339339
* @param charsetName
@@ -346,7 +346,7 @@ public static Observable<byte[]> encode(Observable<String> src, String charsetNa
346346
/**
347347
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
348348
* <p>
349-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png" alt="">
349+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.encode.png" alt="">
350350
*
351351
* @param src
352352
* @param charset
@@ -360,7 +360,7 @@ public static Observable<byte[]> encode(Observable<String> src, Charset charset)
360360
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
361361
* This method allows for more control over how malformed and unmappable characters are handled.
362362
* <p>
363-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.encode.png" alt="">
363+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.encode.png" alt="">
364364
*
365365
* @param src
366366
* @param charsetEncoder
@@ -386,7 +386,7 @@ public byte[] call(String str) {
386386
* Gather up all of the strings in to one string to be able to use it as one message. Don't use
387387
* this on infinite streams.
388388
* <p>
389-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.stringConcat.png" alt="">
389+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.stringConcat.png" alt="">
390390
*
391391
* @param src
392392
* @return the Observable returing all strings concatenated as a single string
@@ -424,7 +424,7 @@ public String call(Object obj) {
424424
*
425425
* See {@link Pattern}
426426
* <p>
427-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.split.png" alt="">
427+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.split.png" alt="">
428428
*
429429
* @param src
430430
* @param regex
@@ -494,7 +494,7 @@ private void output(String part) {
494494
* Concatenates the sequence of values by adding a separator
495495
* between them and emitting the result once the source completes.
496496
* <p>
497-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.join.png" alt="">
497+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.join.png" alt="">
498498
* <p>
499499
* The conversion from the value type to String is performed via
500500
* {@link java.lang.String#valueOf(java.lang.Object)} calls.
@@ -600,7 +600,7 @@ public String toString() {
600600
/**
601601
* Splits the {@link Observable} of Strings by lines and numbers them (zero based index)
602602
* <p>
603-
* <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/St.byLine.png" alt="">
603+
* <img width="640" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/St.byLine.png" alt="">
604604
*
605605
* @param source
606606
* @return the Observable conaining the split lines of the source

0 commit comments

Comments
 (0)