Feign v4.0 Release Notes

    • 👌 Support RxJava-style Observers.
      • Return type can be Observable<T> for an async equiv of Iterable<T>.
      • Observer<T> replaces IncrementalCallback<T> and is passed to Observable.subscribe().
      • On Subscription.unsubscribe(), Observer.onNext() will stop being called.