summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/FtRtecEventComm.idl
blob: 47a23d841939cd2c7b8bd36171329333e43a9e65 (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
// -*- IDL -*-

//=============================================================================
/**
 *  @file    FtRtecEventComm.idl
 *
 *  @author Huang-Ming Huang
 */
//=============================================================================

#ifndef FTRTECEVNETCOMM_H
#define FTRTECEVNETCOMM_H

#include "orbsvcs/RtecEventComm.idl"

module FtRtecEventComm {

  typedef sequence<octet> ObjectId;

  exception InvalidObjectID {
  };

  interface PushConsumer {
    void push(in ObjectId oid, in RtecEventComm::EventSet data)
      raises(InvalidObjectID);
  };

};

#endif