- Support RxJava-style Observers.
- Return type can be
Observable<T>for an async equiv ofIterable<T>. Observer<T>replacesIncrementalCallback<T>and is passed toObservable.subscribe().- On
Subscription.unsubscribe(),Observer.onNext()will stop being called.
- Return type can be
- Log when an http request is retried or a response fails due to an IOException.
- Added support for asynchronous callbacks via
IncrementalCallback<T>andIncrementalDecoder.TextStream<T>. - Wire is now Logger, with configurable Logger.Level.
- Added
feign-gsoncodec, used vianew GsonModule() - changed codec to be similar to WebSocket JSR 356
- Decoder is now
Decoder.TextStream<T> - BodyEncoder is now
3A8E Encoder.Text<T> - FormEncoder is now
Encoder.Text<Map<String, ?>>
- Decoder is now
- Encoder and Decoders are specified via
Provides.Type.SETbinding. - Default Encoder and Form Encoder is
Encoder.Text<Object> - Default Decoder is
Decoder.TextStream<Object> - ErrorDecoder now returns Exception, not fallback.
- There can only be one
ErrorDecoderandRequest.Optionsbinding now.
- removes guava and jax-rs dependencies
- adds JAX-RS integration
- adds Ribbon integration
- adds cli example
- exponential backoff customizable via Retryer.Default ctor
- Initial open source release