Samchon Framework for CPP  1.0.0
samchon::templates::service::Service Class Reference

#include <Service.hpp>

Collaboration diagram for samchon::templates::service::Service:

Public Member Functions

 Service (Client *client, const std::string &path)
 
virtual ~Service ()=default
 
auto getClient () const -> Client *
 
auto getPath () const -> std::string
 
virtual void sendData (std::shared_ptr< protocol::Invoke > invoke) override
 
- Public Member Functions inherited from samchon::protocol::IProtocol
virtual void replyData (std::shared_ptr< Invoke >)=0
 
virtual void sendData (std::shared_ptr< Invoke >)=0
 

Detailed Description

A service.

The Service is an abstract class who represents a service, that is providing functions a specific page.

Extends the Service class and defines its own service, which to be provided for the specific weg page, by overriding the replyData() method. Note that, the service, functions for the specific page should be defined in this Service class, not its parent Client class who represents a remote client and takes communication responsibility.

Class Diagram

Templates - Cloud Service

Author
Jeongho Nam http://samchon.org

Definition at line 33 of file Service.hpp.

Constructor & Destructor Documentation

samchon::templates::service::Service::Service ( Client client,
const std::string &  path 
)
inline

Construct from parent Client and requested path.

Parameters
clientDriver of remote client.
pathRequested path that identifies this Service.

Definition at line 54 of file Service.hpp.

References ~Service().

Here is the call graph for this function:

virtual samchon::templates::service::Service::~Service ( )
virtualdefault

Default Destructor.

The Service object is destructed when its parent Client object has destructed or the Client object changed its child service object to another one.

Referenced by Service().

Here is the caller graph for this function:

Member Function Documentation

auto samchon::templates::service::Service::getClient ( ) const -> Client*
inline

Get client.

Definition at line 78 of file Service.hpp.

auto samchon::templates::service::Service::getPath ( ) const -> std::string
inline

Get requested path.

Definition at line 86 of file Service.hpp.

virtual void samchon::templates::service::Service::sendData ( std::shared_ptr< protocol::Invoke invoke)
inlineoverridevirtual

Send an Invoke message.

Sends an Invoke message to remote system through parent Client object (Client.sendData).

Parameters
invokeAn Invoke message to send to the remte system.

Definition at line 101 of file Service.hpp.


The documentation for this class was generated from the following file: