streamCancelReadHandle method

int streamCancelReadHandle(
  1. int readable
)

Executes stream.cancel-read with a readable endpoint handle.

Implementation

int streamCancelReadHandle(int readable) {
  _requireKind(WasmComponentCanonicalKind.streamCancelRead);
  return _requireValueType().streamCancelReadHandle(
    readable,
    isAsync: isAsync,
  );
}