Load Balancer Simulation
A simulation of a load balancer with dynamic server scaling in C++
Loading...
Searching...
No Matches
Request.h
Go to the documentation of this file.
1
5
6
#ifndef REQUEST_H
7
#define REQUEST_H
8
9
#include <string>
10
15
struct
Request
{
16
std::string
ipIn
;
17
std::string
ipOut
;
18
int
timeRequired
;
19
char
jobType
;
20
};
21
22
#endif
Request
Represents a single request/job in the load balancer simulation.
Definition
Request.h:15
Request::timeRequired
int timeRequired
Definition
Request.h:18
Request::ipIn
std::string ipIn
Definition
Request.h:16
Request::jobType
char jobType
Definition
Request.h:19
Request::ipOut
std::string ipOut
Definition
Request.h:17
include
Request.h
Generated on
for Load Balancer Simulation by
1.16.1