Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Attempt to lock the specified item and return immediately.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public virtual bool Lock(
	Object key
)

Parameters

key
Type: System..::.Object
Key being locked.

Return Value

true if the item was successfully locked; false otherwise.

Implements

IConcurrentCache..::.Lock(Object)

Remarks

This method behaves exactly as if it simply performs the call Lock(key, 0).

See Also