blob: 167d8513c63cd1ae0be43c6879689cdcbd5bccaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// $Id$
//
module Test
{
typedef sequence<octet> Payload;
interface Payload_Receiver
{
/// Send the data using a twoway operat
oneway void more_data (in Payload the_payload);
/// Return the number of messages received so far
long get_message_count ();
};
};
|