dev@grizzly.java.net

Re: testing threadpool

From: rama <rama.rama_at_tiscali.it>
Date: Tue, 7 Apr 2009 18:36:28 +0200

>
> 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;
                }}));