summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneway_Buffering/Test.idl
blob: 1e266d0ea9e93bd9c5546856975033794f3cc78f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// $Id$
//

/// Put the interfaces in a module, to avoid global namespace pollution
module Test
{
  /// A sequence of octets to generate bigger messages
  typedef sequence<octet> Payload;

  /// Clients use this interface to send oneway requests
  interface Oneway_Buffering
  {
    /// Return a simple string
    oneway void receive_data (in Payload the_payload);

    /// An empty operation to force a flush in the ORB queues
    oneway void flush ();

    /// Synchronize the state with the Admin object.
    /**
     * Once flush() has been invoked (with the correct buffering
     * policies) we must use sync() to ensure that both the main
     * server and the Admin servers are in sync.
     */
    void sync ();

    /// Shutdown the server
    void shutdown ();
  };

  /// Clients use this interface to query the number of oneway
  /// requests received.
  interface Oneway_Buffering_Admin
  {
    /// Number of oneway requests received
    unsigned long request_count (in unsigned long expected_count);

    /// Number of bytes received
    unsigned long bytes_received_count (in unsigned long expected_count);

    /// The Oneway_Buffering interface uses this method to report any
    /// request received.
    void request_received (in unsigned long payload_length);

    /// An empty operation to force a flush in the ORB queues
    void flush ();

    /// A method to shutdown the ORB
    /**
     * This method is used to simplify the test shutdown process
     */
    void shutdown ();
  };
};