Main Thread¶
Properties and precondition checkers related to Android main thread.
Content¶
This split provides several properties related to Android main Thread and 2 precondition checkers.
Here’s the list:
mainLooper: Shortcut toLooper.getMainLooper()!!with caching.mainThread: Shortcut toLooper.getMainLooper()!!.threadwith caching.isMainThread: Boolean property that is true if the current Thread is the main Thread.checkMainThread(): Throws anIllegalStateExceptionif not run on the main Thread.checkNotMainThread(): Throws anIllegalStateExceptionif run on the main Thread.
Download¶
implementation "com.louiscad.splitties:splitties-mainthread:2.1.1"