Как я могу использовать закрытый класс в качестве типа возврата в Retrofit2
Мой закрытый класс
sealed class TranslationResponse
data class Success(val code: Int, val text: List<String>) : TranslationResponse()
data class Error(val code: Int, val message: String) : TranslationResponse()
Запрос на дооснащение2
@POST("/.....")
fun query(
@Query("text") text: String,
@Query("lang") lang: String,
@Query("key") key: String = ""
): Observable<TranslationResponse>
когда я вызываю следующий код
response.onErrorReturn { Error(code = 0, message = it.message ?: "error") }
.subscribe {
when (it) {
is Success -> onTranslation(it.text[0])
is Error -> Log.d(this@CustomTextWatcher.javaClass.name, "translation error: ${it.code} ${it.message}")
}
}
Я получаю исключение
Вызвано: java.lang.RuntimeException: не удалось вызвать private ....TranslationResponse() без аргументов
PS если заменить Observable<TranslationResponse>
в Observable<Success>
мой код работает
1 ответ
Я не уверен, что вы можете достичь того, что вы хотите, самым близким для меня будет что-то вроде этого
@POST("/.....")
fun query(
@Query("text") text: String,
@Query("lang") lang: String,
@Query("key") key: String = ""
): Observable<List<String>>
response.subscribe({ data -> handleResponse( Success(data)) },
{ throwable -> handleResponse( Error (throwable.getMessage())})
fun handleResponse(response : TranslationResponse)
{
when (response) {
is Success -> ...
is Error -> ...
}
}