内容简介:Retrofit 2.3.0 发布,Android 的 REST 客户端
Retrofit 2.3.0 发布了,Retrofit 是一个类型安全的 REST 客户端,用于 Android 平台。
更新内容:
-
Retrofit now uses
@Nullable
to annotate all possibly-null values. We've added a compile-time dependency on the JSR 305 annotations. This is a provided dependency and does not need to be included in your build configuration,.jar
file, or.apk
. We use@ParametersAreNonnullByDefault
and all parameters and return types are never null unless explicitly annotated@Nullable
.Warning: this release is source-incompatible for Kotlin users.Nullability was previously ambiguous and lenient but now the compiler will enforce strict null checks.
-
New: Converters added for Java 8's and Guava's
Optional
which wrap a potentially-nullable response body. These converters still rely on normal serialization library converters for parsing the response bytes into an object. -
New: String converters that return
null
for an@Query
or@Field
parameter are now skipped. -
New: The mock module's
NetworkBehavior
now throws a custom subclass ofIOException
to more clearly indicate the exception's source. -
RxJava 1.x converter updated to 1.3.0 which stabilizes the use of
Completable
. -
Fix: Add explicit handling for
OnCompleteFailedException
,OnErrorFailedException
, andOnErrorNotImplementedException
for RxJava 1.x to ensure they're correct delivered to the plugins/hooks for handling. -
Fix:
NoSuchElementException
thrown when unsubscribing from an RxJava 1.xSingle
.
下载地址:
以上所述就是小编给大家介绍的《Retrofit 2.3.0 发布,Android 的 REST 客户端》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 支付宝客户端架构解析:iOS 客户端启动性能优化初探
- 自己动手做数据库客户端: BashSQL开源数据库客户端
- 支付宝客户端架构解析:Android 客户端启动速度优化之「垃圾回收」
- 客户端HTTP缓存
- 简析移动客户端安全
- 配置Hadoop集群客户端
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
图解Java多线程设计模式
[日] 结城浩 / 侯振龙、杨文轩 / 人民邮电出版社 / 2017-8 / 89.00元
本书通过具体的Java 程序,以浅显易懂的语言逐一说明了多线程和并发处理中常用的12 种设计模式。内容涉及线程的基础知识、线程的启动与终止、线程间的互斥处理与协作、线程的有效应用、线程的数量管理以及性能优化的注意事项等。此外,还介绍了一些多线程编程时容易出现的失误,以及多线程程序的阅读技巧等。在讲解过程中,不仅以图配文,理论结合实例,而且提供了运用模式解决具体问题的练习题和答案,帮助读者加深对多线......一起来看看 《图解Java多线程设计模式》 这本书的介绍吧!