LoginUseCase

class LoginUseCase @Inject() constructor(repository: LoginRepository) : SingleUseCase<LoginResponse>

Functions

dispose
Link copied to clipboard
fun dispose()
disposeLast
Link copied to clipboard
fun disposeLast()
execute
Link copied to clipboard
fun execute(onSuccess: (t: LoginResponse) -> Unit, onError: (t: Throwable) -> Unit, onFinished: () -> Unit = {})
saveLogin
Link copied to clipboard
fun saveLogin(loginRequest: LoginRequest)