|
Load Balancer Simulation
A simulation of a load balancer with dynamic server scaling in C++
|
Implementation of the LoadBalancer simulation engine. More...
#include "LoadBalancer.h"#include "Logger.h"#include <iostream>#include <sstream>#include <iomanip>#include <algorithm>Go to the source code of this file.
Variables | |
| const char | PROCESS_JOB = 'P' |
| Job type character for process jobs. | |
| const char | STREAMING_JOB = 'S' |
| Job type character for streaming jobs. | |
Implementation of the LoadBalancer simulation engine.
Definition in file LoadBalancer.cpp.
| const char PROCESS_JOB = 'P' |
Job type character for process jobs.
Definition at line 14 of file LoadBalancer.cpp.
Referenced by LoadBalancer::createRandomRequest().
| const char STREAMING_JOB = 'S' |
Job type character for streaming jobs.
Definition at line 16 of file LoadBalancer.cpp.
Referenced by LoadBalancer::createRandomRequest().