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

ExecutorDelete

Deletes an executor from the registry by name.

If the executor has not been shutdown, it will be forcibly shutdown via shutdownNow() before removal.

Method Signature

ExecutorDelete(name=[string])

Arguments

Argument
Type
Required
Description
Default

name

string

true

The name of the executor to delete

Examples

Delete a registered executor by name

executorNew( "tempPool", "fixed", 4 );
executorDelete( "tempPool" );
writeOutput( executorHas( "tempPool" ) );

Result: false

Delete returns the deleted executor record

Result: deleted

Last updated

Was this helpful?