summaryrefslogtreecommitdiff
path: root/TAO/tao/Collocated_Invocation.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-29 19:18:13 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-29 19:18:13 +0000
commitcd080eec9c415b6a118394ce352f43b1a99a5ea5 (patch)
tree5ebd0390906c1422767d746e55d40a7742c18a88 /TAO/tao/Collocated_Invocation.cpp
parent0172e8e44bc1eeb4458e080a72decc25a7a48dc6 (diff)
downloadATCD-cd080eec9c415b6a118394ce352f43b1a99a5ea5.tar.gz
Mon Jan 29 19:11:14 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Collocated_Invocation.cpp')
-rw-r--r--TAO/tao/Collocated_Invocation.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/TAO/tao/Collocated_Invocation.cpp b/TAO/tao/Collocated_Invocation.cpp
index ee4d5e23f80..0f3e029859f 100644
--- a/TAO/tao/Collocated_Invocation.cpp
+++ b/TAO/tao/Collocated_Invocation.cpp
@@ -35,8 +35,7 @@ namespace TAO
Invocation_Status
Collocated_Invocation::invoke (Collocation_Proxy_Broker *cpb,
- Collocation_Strategy strat
- )
+ Collocation_Strategy strat)
{
Invocation_Status s = TAO_INVOKE_FAILURE;
@@ -74,8 +73,7 @@ namespace TAO
dispatcher->dispatch (orb_core,
request,
- this->forwarded_to_.out ()
- );
+ this->forwarded_to_.out ());
}
else
{
@@ -85,8 +83,7 @@ namespace TAO
this->details_.args_num (),
this->details_.opname (),
this->details_.opname_len (),
- strat
- );
+ strat);
}
// Invocation completed succesfully
@@ -99,16 +96,14 @@ namespace TAO
if (this->forwarded_to_.in ())
this->reply_received (TAO_INVOKE_RESTART);
- s =
- this->receive_other_interception ();
+ s = this->receive_other_interception ();
}
// NOTE: Any other condition that needs handling?
else if (this->response_expected ())
{
this->reply_received (TAO_INVOKE_SUCCESS);
- s =
- this->receive_reply_interception ();
+ s = this->receive_reply_interception ();
}
if (s != TAO_INVOKE_SUCCESS)
return s;