コード例 #1
0
 public bool SpectatorLockExists(Guid vesselId)
 {
     return(ServerLocks.Any(l => l.Key.EndsWith(vesselId.ToString()) && l.Key.StartsWith("spectator-")));
 }
コード例 #2
0
 public bool LockWithPrefixExists(string lockPrefix)
 {
     return(ServerLocks.Any(l => l.Key.StartsWith(lockPrefix)));
 }