Oh yeah, i created the pool with single Thread and...
# eap
v
Oh yeah, i created the pool with single Thread and ThreadFactory creating a deamons threads
Copy code
val deleteService = Executors.newSingleThreadScheduledExecutor(object : ThreadFactory {
		override fun newThread(r: Runnable?): Thread? {
			var t = Thread(r)
			t.isDaemon = true
			return t;			
		}
	})