Beispiel #1
0
 public LockController(RpcController rpc)
 {
     if (instance != null)
     {
         this.rpc = rpc;
         instance = this;
     }
 }
Beispiel #2
0
 public LockController( RpcController rpc )
 {
     if (instance != null)
     {
         this.rpc = rpc;
         instance = this;
     }
 }
Beispiel #3
0
 public void LockReleased(object netconnection, NetworkInterfaces.IReplicated targetobject)
 {
     LockController.GetInstance().LockReleased(netconnection, targetobject);
 }
Beispiel #4
0
 public void LockRequestResponse(object netconnection, NetworkInterfaces.IReplicated targetobject, bool LockCreated)
 {
     LockController.GetInstance().LockRequestResponse(netconnection, targetobject, LockCreated);
 }
Beispiel #5
0
 public void RenewLock(object netconnection, NetworkInterfaces.IReplicated targetobject)
 {
     LockController.GetInstance().RenewLock(netconnection, targetobject);
 }