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

com.flyjingfish.android_aop_annotation.utils.HandlerUtils.kt Maven / Gradle / Ivy

package com.flyjingfish.android_aop_annotation.utils

object HandlerUtils {
    var handler:Handler?=null
    fun post(runnable: Runnable){
        handler?.post(runnable)
    }
    interface Handler{
        fun post(runnable: Runnable)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy