dev@grizzly.java.net

Re: testing threadpool

From: Oleksiy Stashok <Oleksiy.Stashok_at_Sun.COM>
Date: Tue, 07 Apr 2009 18:42:25 +0200

On Apr 7, 2009, at 18:36 , rama wrote:

>>
>> Grizzly HTTP module expects ThreadPool to operate with the specific
>> Thread types.
>> The way how you can use the custom thread pool is following:
>>
>> ws.getSelectorThread().setThreadPool(new FixedThreadPool(10, new
>> ThreadPoolFactory() {
>> public Thread newThread(Runnable r) {
>> Thread thread = new HttpWorkerThread(null, name, r,
>> initialByteBufferSize);
>> thread.setPriority(priority);
>> return thread;
>> });
>> });
>>
>> Please let me know if it works for you.
>>
>> WBR,
>> Alexey.
>
> Nope, same error using the threadfactory :/
>
> ws.getSelectorThread().setThreadPool(new
> FixedThreadPool(10, new ThreadFactory() {
> public Thread newThread(Runnable r) {
> Thread thread = new HttpWorkerThread(null, "ba",
> r,12345);
> return thread;
> }}));

Did you try it with the latest sources?

Alexey.