Engine
Engine class
Object : _engine
Members
name
type
read-only
description
is_running
bool
control variable to check if the engine is running
server
Server
server used by the engine
configuration
Configuration
configuration used by the engine
logging
Logging
log used by the engine
Functions
name
parameters
return-type
description
stop
(void)
void
the engine will stop, consequently the entire service
setup
(configuration::Configuration &, logging::Logging &)
void
configuring the engine has the function of being an engine builder
load
(void)
void
It will basically load the features passed to the engine through the setup
run
(const std::function<void()> &)
void
function to start the engine, basically the entire service, it receives a function type parameter that will run in a thread for the duration of the engine execution
Last updated