Skip to content
Snippets Groups Projects
Commit 090254d4 authored by leahhedgcorth's avatar leahhedgcorth
Browse files

Added code to run the Arrival Process class

parents 9aaa4320 3350555e
No related branches found
No related tags found
No related merge requests found
This program does something different...
This simulation program, beginning at line 220, runs an arrival process. The
ArrivalProcess class extends SimEntityBase in order to conduct a disrete event
simulation of parts arriving to servers.
\ No newline at end of file
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
* *
* This Program is a modified version of ExampleSimulationProgram in order to see the * This Program is a modified version of ExampleSimulationProgram in order to see the
* verbose plain text pdu log. This simulates a firewall identifying a malicious packet * verbose plain text pdu log. This simulates a firewall identifying a malicious packet
* and tracing its source before destroying it.
*
* and tracing its source before destroying it - updated September 12, 2021 to ensure * and tracing its source before destroying it - updated September 12, 2021 to ensure
* correct file pushed to Gitlab. * correct file pushed to Gitlab.
* *
......
This Program is a modified version of ExampleSimulationProgram in order to see
the verbose plain text pdu log. This simulates a firewall identifying a
malicious packet and tracing its source before destroying it.
/** /**
* Assignment 3 - Example Simulation Program for MV3500. * Assignment 3 - Example Simulation Program for MV3500
*
* *
* @see <a href="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/-/tree/master/assignments">networkedGraphicsMV3500 assignments</a>
* @see java.lang.Package
* @see <a href="https://stackoverflow.com/questions/22095487/why-is-package-info-java-useful">StackOverflow: why-is-package-info-java-useful</a>
* @see <a href="https://stackoverflow.com/questions/624422/how-do-i-document-packages-in-java">StackOverflow: how-do-i-document-packages-in-java</a>
*/ */
package MV3500Cohort2023MarchJune.homework3.Chojnacki; package MV3500Cohort2023MarchJune.homework3.Chojnacki;
This program does something different...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment