assign task to specific thread in ThreadPool JDK1.5

I use JDK1.5 threadpool to process some data. Depending on the character of the data. Some of them need to be processed by one thread rather than just submit them to threadpool. How can I assign the task to specific thread in the pool?ThanksC
[263 byte] By [moresnowa] at [2007-11-27 0:31:00]
# 1
If you need them processed by a specific thread why would you submit them to a ThreadPool? This is a contradiction in terms. Use your own thread!
ejpa at 2007-7-11 22:35:03 > top of Java-index,Core,Core APIs...