wireshark/idl/coseventcomm.idl
Guy Harris 3a4cc92b45 Add IDL for cosnaming and coseventcomm.
svn path=/trunk/; revision=14744
2005-06-24 11:38:19 +00:00

35 lines
710 B
Text

//File: CosEventComm.idl
//Part of the Event Service
//From http://industry.ebi.ac.uk/openBSA/idl/CosEventComm.idl
#ifndef _COS_EVENT_COMM_IDL_
#define _COS_EVENT_COMM_IDL_
#pragma prefix "omg.org"
module CosEventComm {
exception Disconnected{};
interface PushConsumer {
void push (in any data) raises(Disconnected);
void disconnect_push_consumer();
};
interface PushSupplier {
void disconnect_push_supplier();
};
interface PullSupplier {
any pull () raises(Disconnected);
any try_pull (out boolean has_event)
raises(Disconnected);
void disconnect_pull_supplier();
};
interface PullConsumer {
void disconnect_pull_consumer();
};
};
#endif /* ifndef _COS_EVENT_COMM_IDL_ */