Skip to content

Commit eee7976

Browse files
committed
Mention the possibility of passing WorkerOptions
1 parent b819c49 commit eee7976

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docs/usage.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,10 @@ const worker = await spawn(BlobWorker.fromText(MyWorker))
167167
Bundle this module and you will obtain a stand-alone bundle that has its worker inlined. This is particularly useful for libraries using threads.js.
168168

169169
### createWorker - select worker backend
170-
`createWorker` allows selecting the worker backend (among web, node, and tiny), and also if you want a blob worker. The second argument to the `createWorker` is an object that specifies `backend: 'web' | 'node' | 'tiny'` and `blob: boolean`.
170+
`createWorker` allows selecting the worker backend (among web, node, and tiny), and also if you want a blob worker.
171+
172+
The second argument to the `createWorker` is an object that specifies `backend: 'web' | 'node' | 'tiny'` and `blob: boolean`.
173+
You can also pass other `WorkerOptions` in this object.
171174

172175
`createWorker` uses dynamic imports to only import the needed implementation, so you can import the needed functions directly to reduce the bundle size.
173176

0 commit comments

Comments
 (0)