Soap.InvokeRegistry.TRemotableTypeRegistry.UnLock

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UnLock; virtual;

C++

virtual void __fastcall UnLock();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Soap.InvokeRegistry.pas
Soap.InvokeRegistry.hpp
Soap.InvokeRegistry TRemotableTypeRegistry

Description

Allows other threads to access the type registry after it was locked.

UnLock exits the critical section that the Lock method entered. It reenables other threads access to the type registry after a call to the Lock method.

Every call to the Lock method must be paired by a call to UnLock when the locking thread is finished with the type registry. The methods of TRemotableTypeRegistry that call the Lock method also call the UnLock method when they are finished.

See Also