diff --git a/app/src/main/kotlin/org/ntlab/developrx/utils/ThreadUtil.kt b/app/src/main/kotlin/org/ntlab/developrx/utils/ThreadUtil.kt new file mode 100644 index 0000000..3c7020c --- /dev/null +++ b/app/src/main/kotlin/org/ntlab/developrx/utils/ThreadUtil.kt @@ -0,0 +1,11 @@ +package org.ntlab.developrx.utils + +/** + * Created by matsumoto_k on 2017/11/11. + */ +class ThreadUtil { + companion object { + @JvmStatic + fun getCurrentThreadName() = Thread.currentThread().name + } +} \ No newline at end of file