![JAR search and dependency download from the Maven repository](/logo.png)
com.airbnb.mvrx.MavericksBlockExecutions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mavericks-common Show documentation
Show all versions of mavericks-common Show documentation
Mavericks is an Android application framework that makes product development fast and fun.
package com.airbnb.mvrx
/**
* Defines whether a [MavericksRepository.execute] invocation should not be run.
*/
enum class MavericksBlockExecutions {
/** Run the execute block normally. */
No,
/** Block the execute call from having an impact. */
Completely,
/**
* Block the execute call from having an impact from values returned by the object
* being executed, but perform one state callback to set the Async property to loading
* as if the call is actually happening.
*/
WithLoading
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy