Skip to content

Commit

Permalink
[Docs] Quickfix for typo in docs related to worker thread (#2150)
Browse files Browse the repository at this point in the history
Fix small typo in docs related to web workers
  • Loading branch information
lukaszuznanski authored Feb 19, 2025
1 parent f5b8539 commit 1a8e521
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ await phpClient.run({ code: `<?php echo "Hello from the thread!";` });

### Controlling web workers

Exchanging messages is the only way to control web workers. The main application has no access to functions or variables inside of a web workeer. It can only send and receive messages using `worker.postMessage` and `worker.onmessage = function(msg) { }`.
Exchanging messages is the only way to control web workers. The main application has no access to functions or variables inside of a web worker. It can only send and receive messages using `worker.postMessage` and `worker.onmessage = function(msg) { }`.

This can be tedious, which is why Playground provides a convenient [consumeAPI](/api/web/function/consumeAPI) function that abstracts the message exchange and exposes specific functions from the web worker. This is why we can call `phpClient.run` in the example above.

0 comments on commit 1a8e521

Please sign in to comment.