summaryrefslogtreecommitdiff
path: root/CIAO/ciao/extension/CCM_QoS.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/extension/CCM_QoS.idl')
-rw-r--r--CIAO/ciao/extension/CCM_QoS.idl31
1 files changed, 31 insertions, 0 deletions
diff --git a/CIAO/ciao/extension/CCM_QoS.idl b/CIAO/ciao/extension/CCM_QoS.idl
new file mode 100644
index 00000000000..f78f98d3665
--- /dev/null
+++ b/CIAO/ciao/extension/CCM_QoS.idl
@@ -0,0 +1,31 @@
+// $Id$
+
+#if !defined (CCM_QOS_IDL)
+#define CCM_QOS_IDL
+
+#include "ciao/CCM_Cookie.idl"
+#include "ciao/CCM_CCMException.idl"
+
+module Components
+{
+ module QoS {
+ struct QoSInstance {
+ string dimension;
+ any value;
+ };
+ typedef sequence<QoSInstance> QoSInstances;
+ struct QoSConstraint {
+ string characteristic;
+ QoSInstances instances;
+ };
+ typedef sequence<QoSConstraint> QoSConstraints;
+ interface Negotiation
+ {
+ Components::Cookie require_qos(in QoSConstraint requirements, in string client_id)
+ raises (CCMException);
+ void release_qos (in Components::Cookie ck);
+ };
+ };
+};
+
+#endif /* CCM_QOS_IDL */