mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:57:46 +00:00
LibWeb: Implement Streams AO ReadableStreamFulfillReadIntoRequest
This commit is contained in:
parent
0880ea3e1c
commit
5ef41dca53
2 changed files with 27 additions and 0 deletions
|
@ -39,6 +39,7 @@ void readable_stream_close(ReadableStream&);
|
|||
void readable_stream_error(ReadableStream&, JS::Value error);
|
||||
void readable_stream_add_read_request(ReadableStream&, ReadRequest&);
|
||||
WebIDL::ExceptionOr<JS::NonnullGCPtr<WebIDL::Promise>> readable_stream_cancel(ReadableStream&, JS::Value reason);
|
||||
void readable_stream_fulfill_read_into_request(ReadableStream&, JS::Value chunk, bool done);
|
||||
void readable_stream_fulfill_read_request(ReadableStream&, JS::Value chunk, bool done);
|
||||
size_t readable_stream_get_num_read_into_requests(ReadableStream const&);
|
||||
size_t readable_stream_get_num_read_requests(ReadableStream const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue