summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-23 20:28:27 +0000
committersumedh <sumedh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-23 20:28:27 +0000
commitbf94839cd8b78c2beed453f54f9be54eebc4f839 (patch)
tree3231da352c5ed5c41b702be13e0b675cad45be3f
parent1bc8573824a2e71fad5f73ac07e73b60bf662754 (diff)
downloadATCD-bf94839cd8b78c2beed453f54f9be54eebc4f839.tar.gz
*** empty log message ***
-rw-r--r--TAO/orbsvcs/orbsvcs/AVStreams.idl19
1 files changed, 9 insertions, 10 deletions
diff --git a/TAO/orbsvcs/orbsvcs/AVStreams.idl b/TAO/orbsvcs/orbsvcs/AVStreams.idl
index ca0d2eff543..3a775bc65f3 100644
--- a/TAO/orbsvcs/orbsvcs/AVStreams.idl
+++ b/TAO/orbsvcs/orbsvcs/AVStreams.idl
@@ -82,37 +82,36 @@ module AVStreams
interface Basic_StreamCtrl
{
// Empty flowSpec => apply operation to all flows
- void stop(in flowSpec the_spec) raises (noSuchFlow);
- void start(in flowSpec the_spec) raises (noSuchFlow);
- void destroy(in flowSpec the_spec) raises (noSuchFlow);
+ void stop (in flowSpec the_spec) raises (noSuchFlow);
+ void start (in flowSpec the_spec) raises (noSuchFlow);
+ void destroy (in flowSpec the_spec) raises (noSuchFlow);
- boolean modify_QoS(inout streamQoS new_qos,
+ boolean modify_QoS (inout streamQoS new_qos,
in flowSpec the_spec)
raises (noSuchFlow, QoSRequestFailed);
// Called by StreamEndPoint when something goes wrong
// with a flow
- oneway void push_event(
- in streamEvent the_event);
+ oneway void push_event (in streamEvent the_event);
- void set_FPStatus(in flowSpec the_spec,
+ void set_FPStatus (in flowSpec the_spec,
in string fp_name, // Only SFP1.0 currently
// specified
in any fp_settings) // Currently SFP accepts
// SFPStatus structure
raises (noSuchFlow, FPError);
- Object get_flow_connection(in string flow_name)
+ Object get_flow_connection (in string flow_name)
raises (noSuchFlow, notSupported);
- void set_flow_connection(in string flow_name,
+ void set_flow_connection (in string flow_name,
in Object flow_connection)
raises (noSuchFlow, notSupported);
};
interface Negotiator
{
- boolean negotiate(in Negotiator remote_negotiator,
+ boolean negotiate (in Negotiator remote_negotiator,
in streamQoS qos_spec);
};