You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
341 B
15 lines
341 B
package com.frank.ffmpeg.util
|
|
|
|
import java.util.concurrent.ExecutorService
|
|
import java.util.concurrent.Executors
|
|
|
|
object ThreadPoolUtil {
|
|
|
|
private val executor = Executors.newSingleThreadExecutor()
|
|
|
|
fun executeSingleThreadPool(runnable: Runnable): ExecutorService {
|
|
executor.submit(runnable)
|
|
return executor
|
|
}
|
|
|
|
}
|
|
|