[Bug 23732] New: [Streams API] Consider adding best-effort scatter/gather mode

https://www.w3.org/Bugs/Public/show_bug.cgi?id=23732

            Bug ID: 23732
           Summary: [Streams API] Consider adding best-effort
                    scatter/gather mode
           Product: WebAppsWG
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Streams API
          Assignee: tyoshino@google.com
          Reporter: tyoshino@google.com
        QA Contact: public-webapps-bugzilla@w3.org
                CC: mike@w3.org, public-webapps@w3.org

Best-effort scatter/gather mode, maybe as readType of e.g. "arraybuffer/sg" for
"arraybuffer", relaxes the requirement that "readPromise is fulfilled with one
object of the specified type" and allows fulfilling with fragments. This would
be useful for performance sensitive apps since Stream implementation can choose
to keep the original until right before fulfilling readPromise, and if it's set
to "*/sg" type, just return an Array of the fragments without doing
concat/split as possible.

Best-effort means that it's not guaranteed that everything is kept as-is.
Concat/split may happen.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 5 November 2013 18:50:46 UTC