Java ServiceExecutor terminating condition

后端 未结 4 1915
我在风中等你
我在风中等你 2021-01-22 07:21

I\'m new to java executor stuff.

I\'m using Java\'s ExecutorService to launch several threads to process data.

Executor executor = Executors.newFixedThre         


        
4条回答
  •  野性不改
    2021-01-22 07:48

    1) threads in a fixed thread pool executor never terminate once started

    2) there is no master thread in thread pool executor

提交回复
热议问题