streamReadHandleWithoutMemoryEvent method

int streamReadHandleWithoutMemoryEvent(
  1. int readable,
  2. int maxElements
)

Starts handle-backed unit stream.read without canonical memory.

Implementation

int streamReadHandleWithoutMemoryEvent(int readable, int maxElements) {
  _requireKind(WasmComponentCanonicalKind.streamRead);
  return _requireValueType().streamReadHandleWithoutMemoryEvent(
    readable,
    maxElements,
  );
}