How to accurately chart use cases when everything is automated? Here is an example with the request I received:
"Make a modification that resets the game server to a specific card or switches game types if there are no players for 2 hours"
Now in the classical sense there are no users. The corresponding modification starts automatically after it is added to the server. The thought ahead will be a timer that will poll the number of players at regular intervals, and then start a countdown if that number is zero. Then the timer will call a method that will cause the change.
What actors do you see in this description?
source
share