Combining RxJava Completables 1. Overview In this tutorial, we’ll play with RxJava’s Completable type, which represents a computation result without an actual value. 2. RxJava Dependency Let’s include the RxJava 2 dependency into our Maven project: <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.2.2</version> </dependency> We can usually find the latest version on Maven Central. 3.… Continue Reading rxjava-completable

Java Weekly, Issue 233 Here we go… 1. Spring and Java ===== >> Unlocking Intersection Types With ‘var’ In Java 10 [blog.codefx.org] As a side effect of introducing “var” to Java, we also got the support for intersection types ? >> FYI: removal of long-deprecated Thread.destroy() and Thread.stop(Throwable) methods [mail.openjdk.java.net] The… Continue Reading java-weekly-233

Connecting Through Proxy Servers in Core Java 1. Introduction Proxy servers act as intermediaries between client applications and other servers. In an enterprise setting, we often use them to help provide control over the content that users consume, usually across network boundaries. In this tutorial, we’ll look at how to… Continue Reading java-connect-via-proxy-server