mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +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
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -50,7 +50,6 @@ namespace HISP.Server
|
|||
private Timer minuteTimer;
|
||||
|
||||
private bool isDisconnecting = false;
|
||||
|
||||
private int timeoutInterval = 95 * 1000;
|
||||
|
||||
private int totalMinutesElapsed = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue