This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <omnetpp.h> | |
| class Server : public cSimpleModule | |
| { | |
| private: | |
| cQueue queue; //the queue; first job in the queue is being serviced | |
| cMessage *departure; //message-reminder of the end of service (job departure) | |
| simtime_t departure_time; //time of the next departure | |
| cOutVector *proces; | |
| cMessage *pomiar; |
NewerOlder