RxJavaString
RxJavaString copied to clipboard
I wasn't super sure I was following your test functions so I just tested the observables by transforming them to and from arrays. Part of the problem is StringObservable.split() seems...
The StringObservable is in the same package as the regular Observable (rx.observables), so it isn't possible to import the package effectively. Would it make sense to put it in its...
I looked at the following test: ``` @Test public void testFromReaderWillUnsubscribeBeforeCallingNextRead() { final byte[] inBytes = "test".getBytes(); final AtomicInteger numReads = new AtomicInteger(0); ByteArrayInputStream is = new ByteArrayInputStream(inBytes) { @Override...
At the moment if `StringObservable.decode` is called on a stream of `byte[]` and the source stream completes with bytes left over in the buffer (more is required before a string...