Archived
This forum has been archived. Please start a new discussion on GitHub.
How can I run my ice server program in multi-threaded mode
in Bug Reports
I want to make the multi-threaded server ,that can make some proxys,and all the proxy run in their own self thread,that is ,I want my proxys run parallelly.
I make the example ,but they run in order like block callling in socket.
I make the example ,but they run in order like block callling in socket.
0
Comments
-
Try changing this:
Ice.ThreadPool.Server.Size=10;
To this:Ice.ThreadPool.Server.Size=10
I.e., remove the ";'".0 -
Thank a lot .
Just this.
But I feel "Ice.ThreadPool.Client.Size=10 ;" should equal to
"Ice.ThreadPool.Client.Size=10 ".
I have love ICE more than CORBA.0 -
Well, properties are free-form, so if you do:
Ice.Blah=foo;
Then the value of Ice.Blah is "foo;", and not "foo".0 -
I see
Thanks your answer.0