#region Copyright 2010-2014 by Roger Knapp, Licensed under the Apache License, Version 2.0 /* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #endregion using System; namespace CSharpTest.Net.Synchronization { /// Singleton instance of ignore locking public class IgnoreLockFactory : ILockFactory { /// Returns the IgnoreLocking.Instance singleton public ILockStrategy Create() { return IgnoreLocking.Instance; } } /// /// wraps the reader/writer lock around Monitor /// public class IgnoreLocking : ILockStrategy { /// Singleton instance of ignore locking public static IgnoreLocking Instance = new IgnoreLocking(); void IDisposable.Dispose() { } /// Returns Zero. public int WriteVersion { get { return 0; } } /// /// Returns true if the lock was successfully obtained within the timeout specified /// public bool TryRead(int timeout) { return true; } /// /// Releases a read lock /// public void ReleaseRead() { } /// /// Returns true if the lock was successfully obtained within the timeout specified /// public bool TryWrite(int timeout) { return true; } /// /// Releases a writer lock /// public void ReleaseWrite() { } /// /// Returns a reader lock that can be elevated to a write lock /// public ReadLock Read() { return new ReadLock(this, true); } /// /// Returns a reader lock that can be elevated to a write lock /// /// public ReadLock Read(int timeout) { return new ReadLock(this, true); } /// /// Returns a read and write lock /// public WriteLock Write() { return new WriteLock(this, true); } /// /// Returns a read and write lock /// /// public WriteLock Write(int timeout) { return new WriteLock(this, true); } } }