Module
Web.Streams.QueuingStrategy
- Package
- purescript-web-streams
- Repository
- purescript-web/purescript-web-streams
#QueuingStrategy Source
data QueuingStrategy t0
#new Source
new :: forall chunk. { highWaterMark :: Int, size :: chunk -> Int } -> Effect (QueuingStrategy chunk)
#byteLengthQueuingStrategy Source
byteLengthQueuingStrategy :: { highWaterMark :: Int } -> Effect (QueuingStrategy Uint8Array)
#countQueuingStrategy Source
countQueuingStrategy :: forall a. { highWaterMark :: Int } -> Effect (QueuingStrategy a)