ActiveObjectAceAddTaskMethod.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef __ACTIVEOBJECT_ACTIVEOBJECTACEADDTASKMETHOD_H
00032 #define __ACTIVEOBJECT_ACTIVEOBJECTACEADDTASKMETHOD_H
00033
00034 #include <ace/Method_Object.h>
00035 #include <ace/Future.h>
00036
00037
00038 #include <Exception.hpp>
00039 #include <Task.hpp>
00040
00041
00042 namespace mermaid
00043 {
00044 namespace support
00045 {
00046 namespace activeobject
00047 {
00048
00049 class ActiveObjectAce;
00050
00051 using mermaid::support::errorhandling::Exception;
00052 using boost::shared_ptr;
00053
00054
00055
00056
00057
00058
00059 class ActiveObjectAceAddTaskMethod : public ACE_Method_Object
00060 {
00061 public:
00062 ActiveObjectAceAddTaskMethod (ActiveObjectAce * a, shared_ptr<Task> t, ACE_Future<shared_ptr<Exception> > futureResult);
00063 virtual ~ActiveObjectAceAddTaskMethod();
00064
00065 virtual int call();
00066
00067 private:
00068 ActiveObjectAce * ao_;
00069 shared_ptr<Task> task_;
00070 ACE_Future<shared_ptr<Exception> > futureResult_;
00071
00072 };
00073 }
00074 }
00075 }
00076
00077 #include <ActiveObjectAce.hpp>
00078
00079 #endif // __ACTIVEOBJECT_ACTIVEOBJECTACEADDTASKMETHOD_H