|
|
|
|||||
|
Does ICE support batched twoway invocation?
The client may send a number of twoway invocations to get values from server(s). If ICE supports
batched twoway invocation, the invocations can be buffered and explicitly flushed by client. This would greatly reduce the overhead. Thanks, Shifu |
|
||||||
|
You can design your interfaces to send a bunch of requests and replies. For example, if you had:
Code:
interface Calc
{
int add(int n1, int n2);
};
Code:
interface Calc
{
int batchAdd(IntSeq numbers);
};
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| oneway invocation Ice vs CORBA | rdaneel | Help Center | 2 | 02-27-2008 04:57 AM |
| fast response of a twoway after a huge batch | David | Help Center | 2 | 06-26-2006 09:10 AM |
| Equivalent of TAO's buffered twoway? | SteveWampler | Help Center | 5 | 11-18-2005 03:57 PM |
| One Ice invocation --> Two simultaneous tcp connections. | mario | Help Center | 3 | 06-29-2005 05:05 AM |
| Asynchronous invocation | stephan | Help Center | 5 | 04-21-2004 09:30 AM |