-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadPoolActivity.kt
44 lines (36 loc) · 1.34 KB
/
ThreadPoolActivity.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
class ThreadPoolActivity : AppCompatActivity() {
//this ExecutorService is wrapped ThreadPoolExecutor (this class extends ExecutorService)
//equivalent of ThreadPoolExecutor with min and max only 1 thread in pool and LinkedBlockingQueue
val executor : ExecutorService = Executors.newSingleThreadExecutor()
val runnable = Runnable {
//some background job
uiHandler.post {
//some UI job
}
}
val callable = Callable {
//some background job and return result
return@Callable "result"
}
val uiHandler = Handler()
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_thread_pool)
button1.setOnClickListener {
//use executor with Runnable
executor.execute(runnable)
}
button2.setOnClickListener {
//use executor with Callable
val future : Future<String> = executor.submit(callable)
val result = future.get()
//this can be canceled by run future.cancel()
}
}
override fun onDestroy() {
super.onDestroy()
//remove tasks and messages from handlers
uiHandler.removeCallbacksAndMessages(null)
executor.shutdownNow() //kill all threads
}
}