Beispiel #1
0
 void unlockSas(Sas sas)
 {
     sas.Unlock();
     this.handledSases.Remove(sas.Name);
 }
Beispiel #2
0
 void closeSas(Sas sas)
 {
     sas.Close();
     this.mainProcess.Spawn(pc => this.unlockSas(sas), $"unlock-sas {sas.Name}", period: GRACE_PERIOD, useOnce: true);
 }