All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.airbnb.mvrx.MavericksBlockExecutions.kt Maven / Gradle / Ivy

Go to download

Mavericks is an Android application framework that makes product development fast and fun.

There is a newer version: 3.0.9
Show newest version
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