Make RandomId Thread Safe

This commit is contained in:
Li 2022-08-31 20:38:08 +12:00
parent f739c99c87
commit 248344f800
2 changed files with 10 additions and 5 deletions

View file

@ -1,19 +1,25 @@
namespace HISP.Security
using System.Threading;
namespace HISP.Security
{
public class RandomID
{
private static Mutex rndmIdMutex = new Mutex();
private static int prevId = 0;
public static int NextRandomId(int randomId=-1)
{
int rndmId = 0;
rndmIdMutex.WaitOne();
if (randomId == -1)
rndmId = prevId+1;
else
rndmId = randomId;
if (rndmId >= prevId)
prevId = rndmId;
prevId = rndmId;
rndmIdMutex.ReleaseMutex();
return rndmId;
}

View file

@ -50,7 +50,6 @@ namespace HISP.Server
private Timer minuteTimer;
private bool isDisconnecting = false;
private int timeoutInterval = 95 * 1000;
private int totalMinutesElapsed = 0;