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

//=============================================================================
/**
 *  @file    FtRtEventComm.idl
 *
 *  $Id$
 *
 *  @author Huang-Ming Huang
 */
//=============================================================================

#ifndef FTRTECEVNETCOMM_H
#define FTRTECEVNETCOMM_H

#include "OctetSeq.pidl"
#include "orbsvcs/RtecEventComm.idl"

module FtRtecEventComm {

  typedef CORBA::OctetSeq ObjectId;

  exception InvalidObjectID {
  };

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

};

#endif