2020-03-09 10:18:02 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
import { sendAsync, sendSync } from "./dispatch_json.ts";
|
|
|
|
|
|
|
|
export function createWorker(
|
|
|
|
specifier: string,
|
|
|
|
hasSourceCode: boolean,
|
|
|
|
sourceCode: string,
|
|
|
|
name?: string
|
|
|
|
): { id: number } {
|
|
|
|
return sendSync("op_create_worker", {
|
|
|
|
specifier,
|
|
|
|
hasSourceCode,
|
|
|
|
sourceCode,
|
|
|
|
name
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hostTerminateWorker(id: number): void {
|
|
|
|
sendSync("op_host_terminate_worker", { id });
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hostPostMessage(id: number, data: Uint8Array): void {
|
|
|
|
sendSync("op_host_post_message", { id }, data);
|
|
|
|
}
|
|
|
|
|
2020-03-20 09:38:34 -04:00
|
|
|
export function hostGetMessage(id: number): Promise<any> {
|
2020-03-16 05:22:16 -04:00
|
|
|
return sendAsync("op_host_get_message", { id });
|
2020-03-09 10:18:02 -04:00
|
|
|
}
|