Dave Moten

Results 27 issues of Dave Moten

Looks like a great simple to use library. Can I suggest a further improvement: Instead of ```java OAuthService service = new ServiceBuilder(YOUR_API_KEY) .apiSecret(YOUR_API_SECRET) .build(LinkedInApi20.instance()); ``` Do something more readable and...

as follow up to #7, add some goodness to the README for these operators, cc @thomasnield

As per doco on README.md I'd love to get new operators `minRequest` and `maxRequest` reviewed for correctness. Thanks! Relevant classes: [FlowableMinRequest.java](https://github.com/davidmoten/rxjava2-extras/blob/master/src/main/java/com/github/davidmoten/rx2/internal/flowable/FlowableMinRequest.java) [FlowableMaxRequest.java](https://github.com/davidmoten/rxjava2-extras/blob/master/src/main/java/com/github/davidmoten/rx2/internal/flowable/FlowableMaxRequest.java)

help wanted

Haven't noticed any documentation for using this project. Could some be created please or the README updated with an appropriate link?

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...

bug

The main method in `FeatureFileDumper` catches exceptions and writes to `System.err` but does not exit the process with a non-zero exit code nor throw a `RuntimeException`. One of these should...

Why are expections not being wrapped in a `RuntimeException` and being rethrown? ``` java public FeatureFileDumper(ConfigurationManager cm, String frontEndName) throws IOException { try { frontEnd = (FrontEnd) cm.lookup(frontEndName); audioSource =...

Would be nice to have (`CallableStatement` support). @adam-mahmood

enhancement

Just to mention I'll rewrite portions of the MemberSingle drain loop and NonBlockingConnectionPool to maximize non-blocking. At the moment establishment of a connection blocks the drain loop. It should be...

enhancement

calculateAdjacent should still be able to return a hash for example as the west neighbour of 0,-180+delta or the east neighbour of 0,180-delta or the northerly neighbour of 90-delta,0 or...