* Execute command

This commit is contained in:
Michael Van Canneyt 2024-11-05 23:57:04 +01:00
parent f98aa26b63
commit b3c3e36b75

View File

@ -47,6 +47,9 @@ Const
cmdSpawn = 'spawn';
cmdLoad = 'load';
cmdRun = 'run';
cmdExecute = 'execute';
channelConsole = 'console_output';
DefaultThreadWorker = 'pas2jsthreadworker.js';
DefaultThreadCount = 2;
@ -220,6 +223,15 @@ Type
Args : Integer;
end;
// Sent my main to thread controller worker: load and start a webassembly
TWorkerExecuteCommand = class external name 'Object' (TWorkerCommand)
public
Url : String;
ExecuteFunc : string;
Env : TJSObject;
end;
{ TWorkerRunCommandHelper }
TWorkerRunCommandHelper = class helper for TWorkerRunCommand