Samchon Framework for CPP  1.0.0
DSInvokeHistory.cpp
1 #include <samchon/protocol/master/DSInvokeHistory.hpp>
2 
3 using namespace std;
4 using namespace samchon::library;
5 using namespace samchon::protocol;
6 using namespace samchon::protocol::master;
7 
8 DSInvokeHistory::DSInvokeHistory(DistributedSystem *system, DistributedSystemRole *role, std::shared_ptr<Invoke> invoke)
9  : super(invoke)
10 {
11  this->system = system;
12  this->role = role;
13 }
14 
16 {
17  return system;
18 }
20 {
21  return role;
22 }
auto getSystem() const -> DistributedSystem *
Get source system.
An entity, a standard data class.
Definition: Entity.hpp:48
DistributedSystem * system
Source system.
auto getRole() const -> DistributedSystemRole *
Gets source role.
Package for external system, within the framework of master.
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84
Package of network protocol and libraries.
Definition: protocol.hpp:185
A role of distributed processing system.
A network driver for a distributed system.
DistributedSystemRole * role
Source role.