@@ -46,7 +46,7 @@ public class StringObservable {
46
46
* Reads from the bytes from a source {@link InputStream} and outputs {@link Observable} of
47
47
* {@code byte[]}s
48
48
* <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="">
50
50
*
51
51
* @param i
52
52
* Source {@link InputStream}
@@ -127,7 +127,7 @@ public Observable<R> call(CloseableResource<S> t1) {
127
127
* Reads from the bytes from a source {@link InputStream} and outputs {@link Observable} of
128
128
* {@code byte[]}s
129
129
* <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="">
131
131
*
132
132
* @param i
133
133
* Source {@link InputStream}
@@ -163,7 +163,7 @@ public void call(Subscriber<? super byte[]> o) {
163
163
* Reads from the characters from a source {@link Reader} and outputs {@link Observable} of
164
164
* {@link String}s
165
165
* <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="">
167
167
*
168
168
* @param i
169
169
* Source {@link Reader}
@@ -177,7 +177,7 @@ public static Observable<String> from(final Reader i) {
177
177
* Reads from the characters from a source {@link Reader} and outputs {@link Observable} of
178
178
* {@link String}s
179
179
* <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="">
181
181
*
182
182
* @param i
183
183
* Source {@link Reader}
@@ -213,7 +213,7 @@ public void call(Subscriber<? super String> o) {
213
213
* Decodes a stream the multibyte chunks into a stream of strings that works on infinite streams
214
214
* and where handles when a multibyte character spans two chunks.
215
215
* <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="">
217
217
*
218
218
* @param src
219
219
* @param charsetName
@@ -227,7 +227,7 @@ public static Observable<String> decode(Observable<byte[]> src, String charsetNa
227
227
* Decodes a stream the multibyte chunks into a stream of strings that works on infinite streams
228
228
* and where handles when a multibyte character spans two chunks.
229
229
* <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="">
231
231
*
232
232
* @param src
233
233
* @param charset
@@ -242,7 +242,7 @@ public static Observable<String> decode(Observable<byte[]> src, Charset charset)
242
242
* and where it handles when a multibyte character spans two chunks.
243
243
* This method allows for more control over how malformed and unmappable characters are handled.
244
244
* <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="">
246
246
*
247
247
* @param src
248
248
* @param charsetDecoder
@@ -333,7 +333,7 @@ public boolean process(byte[] next, ByteBuffer last, boolean endOfInput) {
333
333
/**
334
334
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
335
335
* <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="">
337
337
*
338
338
* @param src
339
339
* @param charsetName
@@ -346,7 +346,7 @@ public static Observable<byte[]> encode(Observable<String> src, String charsetNa
346
346
/**
347
347
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
348
348
* <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="">
350
350
*
351
351
* @param src
352
352
* @param charset
@@ -360,7 +360,7 @@ public static Observable<byte[]> encode(Observable<String> src, Charset charset)
360
360
* Encodes a possible infinite stream of strings into a Observable of byte arrays.
361
361
* This method allows for more control over how malformed and unmappable characters are handled.
362
362
* <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="">
364
364
*
365
365
* @param src
366
366
* @param charsetEncoder
@@ -386,7 +386,7 @@ public byte[] call(String str) {
386
386
* Gather up all of the strings in to one string to be able to use it as one message. Don't use
387
387
* this on infinite streams.
388
388
* <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="">
390
390
*
391
391
* @param src
392
392
* @return the Observable returing all strings concatenated as a single string
@@ -424,7 +424,7 @@ public String call(Object obj) {
424
424
*
425
425
* See {@link Pattern}
426
426
* <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="">
428
428
*
429
429
* @param src
430
430
* @param regex
@@ -494,7 +494,7 @@ private void output(String part) {
494
494
* Concatenates the sequence of values by adding a separator
495
495
* between them and emitting the result once the source completes.
496
496
* <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="">
498
498
* <p>
499
499
* The conversion from the value type to String is performed via
500
500
* {@link java.lang.String#valueOf(java.lang.Object)} calls.
@@ -600,7 +600,7 @@ public String toString() {
600
600
/**
601
601
* Splits the {@link Observable} of Strings by lines and numbers them (zero based index)
602
602
* <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="">
604
604
*
605
605
* @param source
606
606
* @return the Observable conaining the split lines of the source
0 commit comments