Coder Social home page Coder Social logo

run's Issues

apiDSL方法中为什么要重复多次创建`ViewModelDsl<Response>()`对象呢

apiDSL方法中为什么要重复多次创建ViewModelDsl<Response>()对象呢?抽离出来不更好吗?

protected fun <Response> apiDSL(apiDSL: ViewModelDsl<Response>.() -> Unit) {
        val s: ViewModelDsl<Response> = ViewModelDsl<Response>().apply(apiDSL)
        api<Response> {

            onRequest {
                s.request()
            }

            onResponse {
                s.onResponse?.invoke(it)
            }

            onStart {
                val override = s.onStart?.invoke()
                if (override == null || !override) {
                    onApiStart()
                }
                override
            }

            onError { error ->
                val override = s.onError?.invoke(error)
                if (override == null || !override) {
                    onApiError(error)
                }
                override

            }

            onFinally {
                val override = s.onFinally?.invoke()
                if (override == null || !override) {
                    onApiFinally()
                }
                override
            }
        }
    }

如何封装多个网络请求

场景一个界面有3个网络请求, 默认先进行进度条, 然后并发执行3个网络请求, 在最耗时的网络请求完事, 隐藏进度条.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.