You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your webpage currently lists the following example:
classMyApplication : Application() {
overridefunonCreate() {
super.onCreate()
// Configure Kovenant with standard dispatchers// suitable for an Android environment.
startKovenant()
}
overridefunonTerminate() {
super.onTerminate()
// Dispose of the Kovenant thread pools.// For quicker shutdown you could use// `force=true`, which ignores all current// scheduled tasks
stopKovenant()
}
}
It may be useful to update your Android configuration documentation to state that
onTerminate
will never be called in production environments. https://developer.android.com/reference/android/app/Application.html#onTerminate()Your webpage currently lists the following example:
http://kovenant.komponents.nl/android/config/
The text was updated successfully, but these errors were encountered: