abersheeran / rpc.py

A fast and powerful RPC framework based on ASGI/WSGI.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add EventResponse to support Generator/Asynchronous Generator

abersheeran opened this issue · comments

commented

example

@app.register
def generator_function():
    yield 1
    yield 2
@app.register
async def generator_function():
    yield 1
    yield 2