view stubs/cyclone/sse.pyi @ 1933:c81f86f3d65a

effecteval is mostly obsolete, but now it can at least show a list of effects used in a song (which seq can too) Ignore-this: c24e4c1c3ccd839e79b1b2fb19ee996a
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 02 Jun 2019 11:37:14 +0000
parents 4ce991cdacdb
children
line wrap: on
line source

# Stubs for cyclone.sse (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from cyclone.web import RequestHandler
from typing import Any, Optional

class SSEHandler(RequestHandler):
    transport: Any = ...
    def __init__(self, application: Any, request: Any, **kwargs: Any) -> None: ...
    def sendEvent(self, message: Any, event: Optional[Any] = ..., eid: Optional[Any] = ..., retry: Optional[Any] = ...) -> None: ...
    def on_connection_closed(self, *args: Any, **kwargs: Any) -> None: ...
    def bind(self) -> None: ...
    def unbind(self) -> None: ...