1. Using Spring threading and TaskExecutor, how do I know when a thread is finished? stackoverflow.comAlright, possible a naive question here. I have a service that needs to log into multiple network devices, run a command on each and collect the results. For speed, rather ... |
2. TaskExecutor and stopping thread forum.springsource.orgHi, What is the right way to stop thread which was runned by TaskExecutor? I can write without it: Thread readerThread = new Thread(new Runnable(){ public void run() { while(readerThread == ... |
3. Using TaskExecutor and stopping a running Thread forum.springsource.orgUsing TaskExecutor and stopping a running Thread I'm using the ThreadPoolTaskExecutor class in conjunction with the Quartz scheduler to execute small, short blocks of work. The problem that I am running ... |
4. Threads/TaskExecutor Design Question forum.springsource.orgThreads/TaskExecutor Design Question Hi, I have a design question with regard to using spring beans within a class invoked (i.e. 'execute'd') by a TaskExecutor (i.e. within a thread). I see these ... |
5. taskExecutor for multithreading forum.springsource.orgHi, I use the taskExecutor (SimpleAsyncTaskExecutor class) pattern, i have a simple program that reads line from file, writes them in DB, i have put commit_step=1, set the parameter throttle-limit="3". When ... |
6. MultiThreading - TaskExecutor or Queue forum.springsource.orgMultiThreading - TaskExecutor or Queue Hi, I've got a quick question, which is the better option and why over implementing a multithreaded channel which feeds from a activeMQ queue and feeds ... |