mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Make RandomId Thread Safe
This commit is contained in:
parent
f739c99c87
commit
248344f800
2 changed files with 10 additions and 5 deletions
|
@ -1,19 +1,25 @@
|
||||||
namespace HISP.Security
|
using System.Threading;
|
||||||
|
|
||||||
|
namespace HISP.Security
|
||||||
{
|
{
|
||||||
public class RandomID
|
public class RandomID
|
||||||
{
|
{
|
||||||
|
private static Mutex rndmIdMutex = new Mutex();
|
||||||
private static int prevId = 0;
|
private static int prevId = 0;
|
||||||
public static int NextRandomId(int randomId=-1)
|
public static int NextRandomId(int randomId=-1)
|
||||||
{
|
{
|
||||||
int rndmId = 0;
|
int rndmId = 0;
|
||||||
|
rndmIdMutex.WaitOne();
|
||||||
|
|
||||||
if (randomId == -1)
|
if (randomId == -1)
|
||||||
rndmId = prevId+1;
|
rndmId = prevId+1;
|
||||||
else
|
else
|
||||||
rndmId = randomId;
|
rndmId = randomId;
|
||||||
|
|
||||||
if (rndmId >= prevId)
|
if (rndmId >= prevId)
|
||||||
prevId = rndmId;
|
prevId = rndmId;
|
||||||
|
|
||||||
|
rndmIdMutex.ReleaseMutex();
|
||||||
|
|
||||||
return rndmId;
|
return rndmId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,6 @@ namespace HISP.Server
|
||||||
private Timer minuteTimer;
|
private Timer minuteTimer;
|
||||||
|
|
||||||
private bool isDisconnecting = false;
|
private bool isDisconnecting = false;
|
||||||
|
|
||||||
private int timeoutInterval = 95 * 1000;
|
private int timeoutInterval = 95 * 1000;
|
||||||
|
|
||||||
private int totalMinutesElapsed = 0;
|
private int totalMinutesElapsed = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue