better-java-monads icon indicating copy to clipboard operation
better-java-monads copied to clipboard

Results 9 better-java-monads issues
Sort by recently updated
recently updated
newest added

We've found the lib very useful, thanks for it! Unfortunately, there is one thing which prevents it to be used with `org.springframework.web.bind.annotation.ControllerAdvice` exception handling contrroller from spring-mvc Every time the...

this is usefull to expose (throw) exceptions that happen inside the Try monad to the outside.

A method to lift Optionals into the Try monad. This is nice because mixing the two together is a bit of a pain in java, so we can just do...

These changes provide an `Export-Package` attribute in the generated MANIFEST.MF, which allows the compiled jar to be used in OSGi projects.

first of all thanks for your perfect try-monad, i enjoy it very much. using jetty i've got such worning: 2016-08-22 11:34:51.474:WARN:oeja.AnnotationParser:main: EXCEPTION java.lang.ArrayIndexOutOfBoundsException: 5160 at org.objectweb.asm.ClassReader.readClass(Unknown Source) at org.objectweb.asm.ClassReader.accept(Unknown Source)...

I have `Try` inside `CompletableFuture`, and then 2 of these `CompletableFuture` are then linked with `thenCombine` and fed into another function All the existing exception handling logic works fine, but...

I have an existing async called wrapped inside a Try and working with Futures.sequence e.g. ``` List requests = [...] CompletableFuture items = Futures.sequence(requests); List result = items.join() .stream() .map(try...