System.SyncObjs.TCountdownEvent.Signal

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Signal(Count: Integer = 1): Boolean;

C++

bool __fastcall Signal(int Count = 0x1);

Properties

Type Visibility Source Unit Parent
function public
System.SyncObjs.pas
System.SyncObjs.hpp
System.SyncObjs TCountdownEvent

Description

Registers a signal and decrements the CurrentCount value.

The Signal method registers a signal and decrements the value of the CurrentCount property with the value specified by the Count parameter.

By default, the Count parameter's value is 1.

Code Examples

See Also