• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Lock类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Lock的典型用法代码示例。如果您正苦于以下问题:C# Lock类的具体用法?C# Lock怎么用?C# Lock使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Lock类属于命名空间,在下文中一共展示了Lock类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: RepositoryCache

 public RepositoryCache()
 {
     cacheMap = new Dictionary<Key, WeakReference<Repository>>();
     openLocks = new Lock[4];
     for (int i = 0; i < openLocks.Length; i++)
         openLocks[i] = new Lock();
 }
开发者ID:spraints,项目名称:GitSharp,代码行数:7,代码来源:RepositoryCache.cs


示例2: Lock

 public bool Lock(RedisKey resource, TimeSpan ttl, out Lock lockObject)
 {
     var task = LockAsync(resource, ttl);
     task.Wait();
     var result = task.Result;
     lockObject = result.Item2;
     return result.Item1;
 }
开发者ID:collinsauve,项目名称:redlock-cs,代码行数:8,代码来源:Redlock.cs


示例3: CompositionLock

 public CompositionLock(bool isThreadSafe)
 {
     this._isThreadSafe = isThreadSafe;
     if (isThreadSafe)
     {
         this._stateLock = new Lock();
     }
 }
开发者ID:nlhepler,项目名称:mono,代码行数:8,代码来源:CompositionLock.cs


示例4: Release

 public void Release(Lock @lock)
 {
     lock (this) {
         locks.Remove(@lock);
         Lockable.Released(@lock);
         Monitor.PulseAll(this);
     }
 }
开发者ID:deveel,项目名称:deveeldb,代码行数:8,代码来源:LockingQueue.cs


示例5: NewLock

 public Lock NewLock(LockingMode mode, AccessType accessType)
 {
     lock (this) {
         var @lock = new Lock(this, mode, accessType);
         Acquire(@lock);
         @lock.OnAcquired();
         return @lock;
     }
 }
开发者ID:deveel,项目名称:deveeldb,代码行数:9,代码来源:LockingQueue.cs


示例6: Create

		/// <summary>
		/// Try to aquire a machine-wide lock named 'name'. Returns null in case of failure (it doesn't wait at all).
		/// </summary>
		/// <param name="name"></param>
		/// <returns></returns>
		public static Lock Create (string name)
		{
			Lock result = new Lock ();
			Mutex mutex;
			Semaphore semaphore;

			switch (Configuration.LockingAlgorithm.ToLowerInvariant ()) {
			case "mutex":
				mutex = new Mutex (true, name);
				if (mutex.WaitOne (1 /* ms */)) {
					result.mutex = mutex;
					return result;
				}
				return null;
			case "file":
				try {
					result.file = File.Open (Path.Combine (Path.GetTempPath (), name + ".lock"), FileMode.Create, FileAccess.ReadWrite, FileShare.Read);
					return result;
				} catch (IOException ex) {
					Logger.Log ("Could not aquire builder lock: {0}", ex.Message);
					return null;
				}
			case "fileexistence":
			case "fileexistance":
				string tmp = Path.Combine (Path.GetTempPath (), name + ".fileexistence-lock--delete-to-unlock");
				Logger.Log ("Checking file existence for {0}", tmp);
				if (File.Exists (tmp)) {
					try {
						if (ProcessHelper.Exists (int.Parse (File.ReadAllText (tmp)))) {
							Logger.Log ("File lock corresponds to an existing process.");
							return null;
						}
					} catch (Exception ex) {
						Logger.Log ("Could not confirm that file lock corresponds to a non-existing process: {0}", ex.Message);
						return null;
					}
					Logger.Log ("File lock corresponds to a dead process, lock acquired");
				}
				// there is a race condition here.
				// given that the default setup is to execute a program at most once per minute,
				// the race condition is harmless.
				File.WriteAllText (tmp, Process.GetCurrentProcess ().Id.ToString ());
				result.file_existence = tmp;
				return result;
			case "semaphore":
				semaphore = new Semaphore (1, 1, name);
				if (semaphore.WaitOne (1 /* ms */)) {
					result.semaphore = semaphore;
					return result;
				}
				return null;
			default:
				Logger.Log ("Unknown locking algorithm: {0} (using default 'semaphore')", Configuration.LockingAlgorithm);
				goto case "semaphore";
			}
		}
开发者ID:hackmp,项目名称:monkeywrench,代码行数:61,代码来源:Lock.cs


示例7: SEMA4

 public SEMA4(Machine machine)
 {
     sysbus = machine.SystemBus;
     irqLock = new object();
     locks = new Lock[NumberOfEntries];
     for(var i = 0; i < locks.Length; i++)
     {
         locks[i] =  new Lock(this, i);
     }
     CPU0 = new GPIO();
     CPU1 = new GPIO();
 }
开发者ID:rte-se,项目名称:emul8,代码行数:12,代码来源:SEMA4.cs


示例8: GetInstanceOfLock

        private static MCS.Library.SOA.DataObjects.Lock GetInstanceOfLock(string lockId, IUser user)
        {
            Lock _lock = new Lock();

            _lock.LockID = lockId;
            _lock.LockTime = DateTime.Now;
            _lock.LockType = LockType.ActivityLock;
            double db = 0.0;
            _lock.EffectiveTime = TimeSpan.FromMinutes(db);
            _lock.PersonID = user.ID;

            return _lock;
        }
开发者ID:jerryshi2007,项目名称:AK47Source,代码行数:13,代码来源:LockTest.cs


示例9: GetLock

 public bool GetLock(DataLocation dataLocation)
 {
     lock (_locks)
     {
         if (_locks.Any(takenLock => takenLock.Overlap(dataLocation)))
         {
             return false;
         }
         Lock newLock = new Lock(dataLocation);
         _locks.Add(newLock);
     }
     return true;
 }
开发者ID:glenwatson,项目名称:Distributed-Database,代码行数:13,代码来源:LockManager.cs


示例10: Lock

        public bool Lock(RedisKey resource, TimeSpan ttl, out Lock lockObject)
        {
            var val = CreateUniqueLockId();
            Lock innerLock = null;
            bool successfull = retry(DefaultRetryCount, DefaultRetryDelay, () =>
            {
                try
                {
                    int n = 0;
                    var startTime = DateTime.Now;

                    // Use keys
                    for_each_redis_registered(
                        redis =>
                        {
                            if (LockInstance(redis, resource, val, ttl)) n += 1;
                        }
                    );

                    /*
                     * Add 2 milliseconds to the drift to account for Redis expires
                     * precision, which is 1 milliescond, plus 1 millisecond min drift
                     * for small TTLs.
                     */
                    var drift = Convert.ToInt32((ttl.TotalMilliseconds * ClockDriveFactor) + 2);
                    var validity_time = ttl - (DateTime.Now - startTime) - new TimeSpan(0, 0, 0, 0, drift);

                    if (n >= Quorum && validity_time.TotalMilliseconds > 0)
                    {
                        innerLock = new Lock(resource, val, validity_time);
                        return true;
                    }
                    else
                    {
                        for_each_redis_registered(
                            redis =>
                            {
                                UnlockInstance(redis, resource, val);
                            }
                        );
                        return false;
                    }
                }
                catch (Exception)
                { return false; }
            });

            lockObject = innerLock;
            return successfull;
        }
开发者ID:renaatd,项目名称:redlock-cs,代码行数:50,代码来源:Redlock.cs


示例11: DisposableWrapperCatalog

		public DisposableWrapperCatalog(ComposablePartCatalog innerCatalog, bool isThreadSafe)
		{
			if (innerCatalog == null)
				throw new ArgumentNullException(nameof(innerCatalog));

			_lock = new Lock(isThreadSafe, LockRecursionPolicy.NoRecursion);
			_cache = new Dictionary<ComposablePartDefinition, ComposablePartDefinition>();
			_innerCatalog = innerCatalog;
			_compositionOrigin = innerCatalog as ICompositionElement;

			var notify = innerCatalog as INotifyComposablePartCatalogChanged;
			if (notify == null) return;

			notify.Changed += OnChanged;
			notify.Changing += OnChanging;
		}
开发者ID:polewskm,项目名称:NCode.Composition.DisposableParts,代码行数:16,代码来源:DisposableWrapperCatalog.cs


示例12: CheckAccess

        internal void CheckAccess(Lock @lock)
        {
            lock (this) {
                // Error checking.  The queue must contain the Lock.
                if (!locks.Contains(@lock))
                    throw new InvalidOperationException("Queue does not contain the given Lock");

                // If 'READ'
                bool blocked;
                int index;
                if (@lock.AccessType == AccessType.Read) {
                    do {
                        blocked = false;

                        index = locks.IndexOf(@lock);

                        int i;
                        for (i = index - 1; i >= 0 && !blocked; --i) {
                            var testLock = locks[i];
                            if (testLock.AccessType == AccessType.Write)
                                blocked = true;
                        }

                        if (blocked) {
                            Monitor.Wait(this);
                        }
                    } while (blocked);
                } else {
                    do {
                        blocked = false;

                        index = locks.IndexOf(@lock);

                        if (index != 0) {
                            blocked = true;

                            Monitor.Wait(this);
                        }

                    } while (blocked);
                }

                // Notify the Lock table that we've got a lock on it.
                // TODO: Lock.Table.LockAcquired(Lock);
            }
        }
开发者ID:prepare,项目名称:deveeldb,代码行数:46,代码来源:LockingQueue.cs


示例13: Process

 public override void Process()
 {
     DCTSimpleProperty property = DataProperty as DCTSimpleProperty;
     if (null != property)
     {
         var containerElement = document.MainDocumentPart.Document.Body
         .Descendants<SdtElement>().Where(o => o.SdtProperties.Descendants<SdtAlias>().Any(a => a.Val == DataProperty.TagID)).FirstOrDefault();
         if (null == containerElement)
             return;
         var runElement = containerElement.Descendants<Run>().First();
         runElement.RemoveAllChildren();
         runElement.AppendChild<Text>(new Text(GeneralFormatter.ToString(property.Value, property.FormatString)));
         if (property.IsReadOnly)
         {
             Lock lockControl = new Lock();
             lockControl.Val = LockingValues.SdtContentLocked;
             containerElement.SdtProperties.Append(lockControl);
         }
     }
 }
开发者ID:jerryshi2007,项目名称:AK47Source,代码行数:20,代码来源:GeneralDataProcessor.cs


示例14: case_1008

void case_1008()
#line 6738 "cs-parser.jay"
{
		if (yyVals[0+yyTop] is EmptyStatement && lexer.peek_token () == Token.OPEN_BRACE)
			Warning_EmptyStatement (GetLocation (yyVals[0+yyTop]));
	  
		yyVal = new Lock ((Expression) yyVals[-2+yyTop], (Statement) yyVals[0+yyTop], GetLocation (yyVals[-4+yyTop]));
		lbag.AddStatement (yyVal, GetLocation (yyVals[-3+yyTop]), GetLocation (yyVals[-1+yyTop]));
	  }
开发者ID:furesoft,项目名称:NRefactory,代码行数:9,代码来源:cs-parser.cs


示例15: case_1009

void case_1009()
#line 6746 "cs-parser.jay"
{
		Error_SyntaxError (yyToken);

		yyVal = new Lock ((Expression) yyVals[-1+yyTop], null, GetLocation (yyVals[-3+yyTop]));
		lbag.AddStatement (yyVal, GetLocation (yyVals[-2+yyTop]));
	  }
开发者ID:furesoft,项目名称:NRefactory,代码行数:8,代码来源:cs-parser.cs


示例16: UpgradableReadLock

 internal UpgradableReadLock(Lock @lock)
 {
     _isDisposed = 0;
     _lock = @lock;
     _lock.EnterUpgradableReadLock();
 }
开发者ID:cccsdh,项目名称:SharedWebComponentsMef,代码行数:6,代码来源:Lock.cs


示例17: WriteLock

 internal WriteLock(Lock @lock)
 {
     _isDisposed = 0;
     _lock = @lock;
     _lock.EnterWriteLock();
 }
开发者ID:cccsdh,项目名称:SharedWebComponentsMef,代码行数:6,代码来源:Lock.cs


示例18: WriteLock

 public WriteLock(Lock @lock)
 {
     this._isDisposed = 0;
     this._lock = @lock;
     this._lock.EnterWriteLock();
 }
开发者ID:nlhepler,项目名称:mono,代码行数:6,代码来源:Lock.Writer.cs


示例19: ReadLock

 internal ReadLock(Lock @lock)
 {
     _isDisposed = 0;
     _lock = @lock;
     _lock.EnterReadLock();
 }
开发者ID:cccsdh,项目名称:SharedWebComponentsMef,代码行数:6,代码来源:Lock.cs


示例20: VisitLock

 public override Statement VisitLock(Lock Lock) {
   if (Lock == null) return null;
   Expression g = Lock.Guard = this.VisitExpression(Lock.Guard);
   TypeNode t = g == null ? SystemTypes.Object : this.typeSystem.Unwrap(g.Type);
   if (t.IsValueType)
     this.HandleError(g, Error.LockNeedsReference, this.GetTypeName(t));
   bool savedInsideTryBlock = this.insideTryBlock;
   this.insideTryBlock = true;
   Lock.Body = this.VisitBlock(Lock.Body);
   this.insideTryBlock = savedInsideTryBlock;
   return Lock;
 }
开发者ID:hesam,项目名称:SketchSharp,代码行数:12,代码来源:Checker.cs



注:本文中的Lock类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# LockMode类代码示例发布时间:2022-05-24
下一篇:
C# Locator类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap