interface Parser<Input, Result>
This can be used by the library to parse responses into a format the caller desires
abstract fun parse(input: Input): Single<Result>
|
interface ByteArrayParser<Result> : Parser<ByteArray, Result>
This interface is a specific subinterface of Parser that parses ByteArray objects |