On Fri, Jun 13, 2008 at 8:20 AM, islam alnaggar <[EMAIL PROTECTED]> wrote:
> hello , > i have client/server application i had wrote using mina framework > so i have client do many requests simultaneous to server side > like sending voip packets , getting text messages etc.. > is there any problem with the threading issue, and i need to know the > threading architecture that mina work with the same client .. > The threading aspects of your protocol server depend on how you design it and the semantics of these simultaneous requests: i.e. do the requests from the same client need to be handled in order etc. But independent of this you of course want your server to be able to respond to multiple concurrent requests at a time. You should not have any problem doing this with MINA. Alex
