0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Android】Looper を持つスレッドの CoroutineDispatcher を作る

Last updated at Posted at 2021-09-14

関連記事:【Kotlin/JVM】CoroutineDispatcher を作る

次のようにすることで Looper を持つスレッドの CoroutineDispatcher を作ることができる。

import android.os.Handler
import android.os.HandlerThread
import kotlinx.coroutines.*
import kotlinx.coroutines.android.HandlerDispatcher
import kotlinx.coroutines.android.asCoroutineDispatcher

val handlerDispatcher: HandlerDispatcher =
    HandlerThread("HandlerThreadDispatcher")
        .apply { start() }
        .looper
        .let { Handler(it) }
        .asCoroutineDispatcher()

HandlerDispatcher クラスは Dispatchers.Main の型である MainCoroutineDispatcher を継承しており1Dispatchers.Main と同じく immediate プロパティを持つ。

Realm では、メインスレッドではない、Looper を持つスレッドが必要になることがある。
そのときにはこの方法を使うとコルーチンで扱うことができて便利だ。

/以上

  1. 型名からは継承関係が逆のように感じるが…。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?