Created
August 23, 2019 12:04
-
-
Save llleodeleon/cf5ba9381c5fc0260c87d10f5da79088 to your computer and use it in GitHub Desktop.
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
sealed class Results<out T: Any> { | |
class Success<out T: Any>(val response: T): Results<T>() | |
class Failure(val message: String, val serverError: ServerError?): Results<Nothing>() | |
object NetworkError: Results<Nothing>() | |
} | |
class ResultsCallAdapterFactory private constructor() : CallAdapter.Factory() { | |
companion object { | |
@JvmStatic | |
fun create() = ResultsCallAdapterFactory() | |
} | |
override fun get(returnType: Type, annotations: Array<Annotation>, retrofit: Retrofit): CallAdapter<*, *>? { | |
return try { | |
val enclosedType = returnType as ParameterizedType | |
val responseType = getParameterUpperBound(0, enclosedType) | |
val rawResultType = getRawType(responseType) | |
val delegate: CallAdapter<Any,Any> = retrofit.nextCallAdapter(this,returnType,annotations) as CallAdapter<Any,Any> | |
if(rawResultType != Results::class.java) | |
null | |
else { | |
object: CallAdapter<Any,Any>{ | |
override fun adapt(call: Call<Any>): Any { | |
val response = delegate.adapt(call) | |
//What should happen here? | |
return response | |
} | |
override fun responseType(): Type { | |
return delegate.responseType() | |
} | |
} | |
} | |
} catch (e: ClassCastException) { | |
null | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment