Last active
September 30, 2017 17:54
-
-
Save ntoskrnl/32122b013da02470bff1a64b08f3e00e to your computer and use it in GitHub Desktop.
An interface for simple JSON-RPC client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface JsonRpcClient { | |
fun <R> call(request: JsonRpcRequest, responseType: Type): Single<R> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment