GoldenGateBindings / com.fitbit.goldengate.bindings.coap / Parser

Parser

interface Parser<Input, Result>

This can be used by the library to parse responses into a format the caller desires

Functions

parse

abstract fun parse(input: Input): Single<Result>

Parse an object of type Input into an object of type Result

Inheritors

ByteArrayParser

interface ByteArrayParser<Result> : Parser<ByteArray, Result>

This interface is a specific subinterface of Parser that parses ByteArray objects