Supercharging Retrofit with Kotlin

2019-1-29 21:48

Building a Kotlin-esque API for Retrofit

At Coinbase we use Retrofit and Square’s RxJava 2 Adapter as our API to the wire. Retrofit makes networking a breeze, but throughout our app we found ourselves writing code like this:

https://medium.com/media/903b7744b3ff6a3afea6f2af43d9d363/href

This works, but there’s a few rough edges:

Our API isn’t declarative. To determine what state we’re in we have to null check a bunch of things and it’s easy to miss a caseWe’ve inadvertently leaked our network serializer (moshi) into our application layer to deserialize error bodiesStreams get torn down when a network error occurs. This isn’t a big deal here, but if we start combining network streams with other Observables we likely don’t want network errors to terminate the resulting stream

Let’s look at how we can use Retrofit’s CallAdapter API to nerf down these edges. We’ll use Sealed Classes to represent the result of network calls and build error body deserialization into Retrofit.

https://medium.com/media/a9c5e48937a814bdf845ab0f5e23c129/href

To have Retrofit return an instance of NetworkResponse when the getTokens() API is invoked, we have to write a custom CallAdapter.Factory. The CallAdapter.Factory below says, “I know how to create instances of NetworkResponse that are emitted to RxJava streams."

https://medium.com/media/1f1d92f0536c3e3a664a1932dd682b73/href

When the getTokens() API is invoked, this CallAdapter.Factory:

Delegates to an adapter that knows how to make an instance of the type Observable<AccessToken> (line 46)Asks for a converter capable of serializing the type Error (line 54)Creates a KotlinRxJava2CallAdapter (line 60). This adapter deserializes error bodies and will decorate the stream of Observable<AccessToken> into a Single<NetworkResponse<AccessToken,Error>>

To use our custom CallAdapter.Factory we have to plug it into our Retrofit instance. Adapter registration order is important since we’ve written a delegating CallAdapter; we must register our adapter before any other adapters it may delegate to. In the snippet below we delegate the creation of Observable<AccessToken> to Square’s RxJava Adapter.

val retrofit = Retrofit.Builder()
.baseUrl("https://api.coinbase.com/v2/")
.addCallAdapterFactory(KotlinRxJava2CallAdapterFactory())
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
.build()

If you’re interested in having a Kotlin-esque API to the wire that provides error body deserialization, you can find the full code for our Adapter here.

P.S. We’re hiring!

Special thanks to Jesse Wilson for catching a bug in the full code for the adapter; all error codes aren’t guaranteed to return JSON!

Supercharging Retrofit with Kotlin was originally published in The Coinbase Blog on Medium, where people are continuing the conversation by highlighting and responding to this story.

Similar to Notcoin - TapSwap on Solana Airdrops In 2024

origin »

Bitcoin (BTC) на Currencies.ru

$ 67101.41 (-1.21%)
Объем 24H $35.795b
Изменеия 24h: -3.33 %, 7d: 3.35 %
Cегодня L: $67002.8 - H: $70011.8
Капитализация $1322.037b Rank 1
Доступно / Всего 19.702m BTC / 21m BTC

coinbase medium careers working retrofit kotlin learn

coinbase medium → Результатов: 126