Mercurial > code > home > repos > light9
view stubs/cyclone/sse.pyi @ 1993:a322fba0035c
tintable cyc effect
Ignore-this: 61408125389e6146f5835d56a26df07a
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sun, 09 Jun 2019 18:31:47 +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: ...