summaryrefslogtreecommitdiff
path: root/DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h')
-rw-r--r--DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h b/DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h
deleted file mode 100644
index 3e6d4b86246..00000000000
--- a/DAnCE/dance/LocalityManager/Scheduler/Events/Passivate.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/**
- * @file Passivate.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- */
-
-#ifndef EVENT_PASSIVATE_H
-#define EVENT_PASSIVATE_H
-
-#include "dance/LocalityManager/Scheduler/Deployment_Scheduler_export.h"
-#include "dance/LocalityManager/Scheduler/Events/Action_Base.h"
-#include "dance/Deployment/Deployment_DeploymentPlanC.h"
-
-namespace DAnCE
-{
- /**
- * @class
- */
- class Deployment_Scheduler_Export Passivate_Instance :
- public virtual Action_Base
- {
- public:
- Passivate_Instance (::Deployment::DeploymentPlan & plan,
- ::CORBA::ULong instanceRef,
- const CORBA::Any &ref,
- const char *instance_type,
- Event_Future holder);
-
- virtual ~Passivate_Instance (void);
-
- protected:
- virtual void invoke_pre_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &);
-
- virtual void invoke (::DAnCE::InstanceDeploymentHandler_ptr);
-
- virtual void invoke_post_interceptor (Plugin_Manager::INTERCEPTORS::const_iterator &);
-
- virtual void create_unexpected_exception (const std::string &,
- const std::string &);
-
- virtual void create_valid_result (Event_Result &);
-
- private:
- ::Deployment::DeploymentPlan &plan_;
- ::CORBA::ULong instanceRef_;
- const ::CORBA::Any &ref_;
- };
-}
-
-#endif