Issue with ExecutorFilter

2008-11-14 Thread Alexander Christian
Hi together, I have some questions about the ExecutorFilter: To transfer messages, i primary use my own ProtocolCodecFactory which converts my message objects into bytes and back. I read on some presentations on the web, that it's a good idea to use ExecutorFilter to speed up the system. So I

Re: Issue with ExecutorFilter

2008-11-14 Thread Emmanuel Lecharny
Mina version ? Alexander Christian wrote: Hi together, I have some questions about the ExecutorFilter: To transfer messages, i primary use my own ProtocolCodecFactory which converts my message objects into bytes and back. I read on some presentations on the web, that it's a good idea to use

Re: Issue with ExecutorFilter

2008-11-14 Thread Alexander Christian
On Fri, 14 Nov 2008 15:49:33 +0100, Alexander Christian [EMAIL PROTECTED] wrote: Hmm, I changed to following code --code-- acceptor.getFilterChain().addFirst(executor, new ExecutorFilter(filterchainWorkerPool)); --/code-- to this one: --code-- OrderedThreadPoolExecutor c = new

Re: Issue with ExecutorFilter

2008-11-14 Thread Emmanuel Lecharny
Alexander Christian wrote: On Fri, 14 Nov 2008 15:49:33 +0100, Alexander Christian [EMAIL PROTECTED] wrote: Hmm, I changed to following code --code-- acceptor.getFilterChain().addFirst(executor, new ExecutorFilter(filterchainWorkerPool)); --/code-- to this one: --code--

Re: Issue with ExecutorFilter

2008-11-14 Thread Emmanuel Lecharny
Alexander Christian wrote: You're right. MINA is a really great framework, and my library benefits from it massively. But it's not that easy to get a application, bigger than the samples working. The thing I'm mostly missing is the JavaDoc in several source files. How strange ... ;) But