System.Tether.AppProfile.TRemoteActionState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TRemoteActionState = (Running, NotRunning, NotFound);

C++

enum class DECLSPEC_DENUM TRemoteActionState : unsigned char { Running, NotRunning, NotFound };

Properties

Type Visibility Source Unit Parent
enum public
System.Tether.AppProfile.pas
System.Tether.AppProfile.hpp
System.Tether.AppProfile System.Tether.AppProfile

Description

Current state of an asynchronous TRemoteAction.

Possible values are:

Value Description

Running

The TRemoteAction is currently running (its execution is not finished yet).

NotRunning

The TRemoteAction is not running (its execution is already finished).

NotFound

The name or the profile of the remote action can not be found.

See Also