Click or drag to resize

Blocking Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Blocking provides a set of helper methods related to blocking a thread.
Inheritance Hierarchy
SystemObject
  Tangosol.UtilBlocking

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class Blocking

The Blocking type exposes the following members.

Constructors
  NameDescription
Public methodBlocking
Initializes a new instance of the Blocking class
Top
Methods
  NameDescription
Public methodStatic memberEnter(Object)
Acquires an exclusive lock on the specified object while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberEnter(Object, Boolean)
Acquires an exclusive lock on the specified object while still respecting the calling thread's ThreadTimeout, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberEnterReadLock
Tries to enter the lock in read mode while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberEnterUpgradeableReadLock
Tries to enter the lock in upgradeable mode while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberEnterWriteLock
Tries to enter the lock in write mode while still respecting the calling thread's ThreadTimeout.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberSleep(Int32)
Invoke Sleep(Int32) while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberSleep(TimeSpan)
Invoke Sleep(TimeSpan) while still respecting the calling thread's ThreadTimeout.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodStatic memberTryEnter(Object, Int32)
Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object while still respecting the calling thread's ThreadTimeout
Public methodStatic memberTryEnter(Object, TimeSpan)
Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object while still respecting the calling thread's ThreadTimeout
Public methodStatic memberTryEnter(Object, Int32, Boolean)
Attempts, for the specified amount of time, to acquire an exclusive lock on the specified object, while still respecting the calling thread's ThreadTimeout, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberTryEnter(Object, TimeSpan, Boolean)
Attempts, for the specified number of milliseconds, to acquire an exclusive lock on the specified object, while still respecting the calling thread's ThreadTimeout, and atomically sets a value that indicates whether the lock was taken.
Public methodStatic memberTryEnterReadLock(ReaderWriterLockSlim, Int32)
Tries to enter the lock in read mode, with an optional time-out while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberTryEnterReadLock(ReaderWriterLockSlim, TimeSpan)
Tries to enter the lock in read mode, with an optional time-out while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberTryEnterUpgradeableReadLock(ReaderWriterLockSlim, Int32)
Tries to enter the lock in upgradeable mode, with an optional time-out while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberTryEnterUpgradeableReadLock(ReaderWriterLockSlim, TimeSpan)
Tries to enter the lock in upgradeable mode, with an optional time-out while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberTryEnterWriteLock(ReaderWriterLockSlim, Int32)
Tries to enter the lock in write mode, with an optional time-out while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberTryEnterWriteLock(ReaderWriterLockSlim, TimeSpan)
Tries to enter the lock in write mode, with an optional time-out while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberWait(Object)
Wait on the the specified monitor while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberWait(Object, Int32)
Wait on the the specified monitor while still respecting the calling thread's ThreadTimeout.
Public methodStatic memberWait(Object, TimeSpan)
Wait on the specified monitor while still respecting the calling thread's ThreadTimeout.
Top
See Also