futureWriteHandle method

WASIComponentAsyncCopyResult futureWriteHandle(
  1. int writable,
  2. Object? value
)

Executes future.write with a writable endpoint handle.

Implementation

WASIComponentAsyncCopyResult futureWriteHandle(int writable, Object? value) {
  _requireKind(WasmComponentCanonicalKind.futureWrite);
  return _requireValueType().futureWriteHandle(writable, value);
}