8000 Stream support · Issue #24 · logux/django · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.
This repository was archived by the owner on Aug 25, 2024. It is now read-only.
Stream support #24
Open
Open
@ai

Description

@ai

We need to add stream support to protocol processing as it requires in docs.

Pseudocode:

- answers = [get_resend(), get_access(), get_processed()]
- response.send(json: answers)
+ response.write("[")
+ resporce.write(get_resend())
+ response.write(",")
+ resporce.write(get_access())
+ response.write(",")
+ resporce.write(get_processed())
+ resporce.write("]")

We do not need async support here. Good old sync way is enough.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0