2023-03-28 18:58:41 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2023, Matthew Olsson <mattco@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
#include <LibWeb/WebIDL/Promise.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Streams {
|
|
|
|
|
|
|
|
|
|
enum class ReadableStreamType {
|
|
|
|
|
Bytes
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct UnderlyingSource {
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Root<WebIDL::CallbackType> start;
|
|
|
|
|
GC::Root<WebIDL::CallbackType> pull;
|
|
|
|
|
GC::Root<WebIDL::CallbackType> cancel;
|
2023-03-28 18:58:41 -07:00
|
|
|
Optional<ReadableStreamType> type;
|
2023-04-18 20:05:06 -07:00
|
|
|
Optional<u64> auto_allocate_chunk_size;
|
2023-03-28 18:58:41 -07:00
|
|
|
|
|
|
|
|
static JS::ThrowCompletionOr<UnderlyingSource> from_value(JS::VM&, JS::Value);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|