WebAssembly.compileStreaming()
**WebAssembly.compileStreaming()
**함수는 스트림 된 원본 소스에서 직접 WebAssembly.Module
을 컴파일합니다. 이 함수는 모듈을 인스턴스화하기 전에 컴파일해야하는 경우 유용합니다 (그렇지 않으면 WebAssembly.instantiateStreaming ()
함수를 사용해야합니다).
Syntax
js
WebAssembly.compileStreaming(source);
Parameters
Return value
Promise
는 컴파일 된 모듈로 표현된 WebAssembly.Module
객체로 반환됩니다.
Exceptions
bufferSource
가 typed array가 아니면TypeError
가 발생합니다.- 컴파일에 실패하면 promise는
WebAssembly.CompileError
와 함께 reject가 반환됩니다.
Examples
다음 예제 (GitHub의 compile-streaming.html 데모 및 라이브보기)에서 기본 소스의 .wasm 모듈을 직접 스트리밍 한 다음 WebAssembly.Module
객체로 컴파일합니다. compileStreaming()
함수는 Response
객체에 대한 promise를 받으므로 직접 fetch()
호출을 전달할 수 있습니다.
js
var importObject = { imports: { imported_func: (arg) => console.log(arg) } };
WebAssembly.compileStreaming(fetch("simple.wasm"))
.then((module) => WebAssembly.instantiate(module, importObject))
.then((instance) => instance.exports.exported_func());
결과 모듈 인스턴스는 WebAssembly.instantiate ()
를 사용하여 인스턴스화되고 내 보낸 함수가 호출됩니다.
명세서
Specification |
---|
WebAssembly Web API # dom-webassembly-compilestreaming |
브라우저 호환성
BCD tables only load in the browser