Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save markchristopherng/bd2912391f061e18e24731f256796d56 to your computer and use it in GitHub Desktop.
Save markchristopherng/bd2912391f061e18e24731f256796d56 to your computer and use it in GitHub Desktop.
fun getOnboardingInfoAndSmartMessage() {
viewModelScope.launch {
try {
withTimeout(2500) {
onBoardingData.loadWith(this) {
onBoardDispatchManager.getOnboardingInfoAndSmartMessage()
}
}
} catch (error: TimeoutCancellationException) {
onBoardingData.postError(error)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment