Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. package com.legalimpurity.asynctaskwrittenfromscratch.MyAsyncTaskCode.executors
  2.  
  3. import java.util.concurrent.ThreadFactory
  4.  
  5. class MyThreadFactory : ThreadFactory
  6. {
  7. override fun newThread(runnable: Runnable?) = Thread(runnable)
  8. }
Add Comment
Please, Sign In to add comment