summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/DomainApplicationManager/Reply_Handler_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/DomainApplicationManager/Reply_Handler_i.cpp')
-rw-r--r--CIAO/DAnCE/DomainApplicationManager/Reply_Handler_i.cpp128
1 files changed, 0 insertions, 128 deletions
diff --git a/CIAO/DAnCE/DomainApplicationManager/Reply_Handler_i.cpp b/CIAO/DAnCE/DomainApplicationManager/Reply_Handler_i.cpp
deleted file mode 100644
index 6ebe08457da..00000000000
--- a/CIAO/DAnCE/DomainApplicationManager/Reply_Handler_i.cpp
+++ /dev/null
@@ -1,128 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-#include "Reply_Handler_i.h"
-#include "DomainApplicationManager_AMI_Impl.h"
-
-// Implementation skeleton constructor
-Deployment_AMI_NodeApplicationManagerHandler_i::
-Deployment_AMI_NodeApplicationManagerHandler_i (CIAO::DomainApplicationManager_AMH_Impl *dam)
-: retn_node_app_ (0),
- retn_connections_ (0),
- dam_ (dam)
-{
-}
-
-// Implementation skeleton destructor
-Deployment_AMI_NodeApplicationManagerHandler_i::~Deployment_AMI_NodeApplicationManagerHandler_i (void)
-{
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::startLaunch (
- ::Deployment::Application_ptr ami_return_val,
- const ::Deployment::Connections & providedReference)
-{
- if (CIAO::debug_level () > 9)
- ACE_DEBUG ((LM_ERROR,
- "CIAO (%P|%t): Reply_Handler_i.cpp::AMI startLaunch() returned\n"));
-
- // Add your implementation here
- ACE_Guard<TAO_SYNCH_MUTEX> guard (lock_);
-
- CIAO::DomainApplicationManager_AMI_Impl * ami_dam =
- static_cast<CIAO::DomainApplicationManager_AMI_Impl*> (dam_);
- ami_dam->decrease_start_launch_reply_count ();
-
- // Narrow down to NodeApplication object reference
- this->retn_node_app_ =
- ::Deployment::NodeApplication::_narrow (ami_return_val);
-
- this->retn_connections_ = providedReference;
-
- // Below operation will be called only once, i.e., when the reply count
- // drops to zero
- if (ami_dam->start_launch_reply_count () == 0)
- ami_dam->post_ami_startLaunch ();
-}
-
-::Deployment::NodeApplication_ptr
-Deployment_AMI_NodeApplicationManagerHandler_i::get_node_app ()
-{
- return ::Deployment::NodeApplication::_duplicate (
- this->retn_node_app_.in ());
-}
-
-
-::Deployment::Connections
-Deployment_AMI_NodeApplicationManagerHandler_i::get_connections ()
-{
- return this->retn_connections_;
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::perform_redeployment (
- ::Deployment::Application_ptr,
- const ::Deployment::Connections &)
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::perform_redeployment_excep (
- ::Messaging::ExceptionHolder *)
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::reset_plan ()
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::reset_plan_excep (
- ::Messaging::ExceptionHolder *)
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::set_shared_components ()
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::set_shared_components_excep (
- ::Messaging::ExceptionHolder *)
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::set_priority (
- ::CORBA::Long)
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::set_priority_excep (
- ::Messaging::ExceptionHolder *)
-{
- // Add your implementation here
-}
-
-
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::startLaunch_excep (
- ::Messaging::ExceptionHolder *)
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::destroyApplication ()
-{
- // Add your implementation here
-}
-
-void Deployment_AMI_NodeApplicationManagerHandler_i::destroyApplication_excep (
- ::Messaging::ExceptionHolder *)
-{
- // Add your implementation here
-}
-