For the complete documentation index, see llms.txt. This page is also available as Markdown.

ExecutorStatus

Get a struct map of a specific executor and its stats.

If no parameters are passed, it will return a struct map of all executors and their stats.

Method Signature

ExecutorStatus(name=[string])

Arguments

Argument
Type
Required
Description
Default

name

string

false

The name of the executor to get.

Examples

Get executor status information

executorNew( "statusPool", "fixed", 4 );
status = executorStatus( "statusPool" );
writeOutput( status.containsKey( "name" ) );

Result: true

Status includes pool type and thread count

Result: infoPool,FIXED

Last updated

Was this helpful?