view stubs/cyclone/sse.pyi @ 1961:f77dfa8e82b9

new 'image' effect for animating light colors Ignore-this: 8df08111173bd96ff8d8093d4243c3ba
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 06 Jun 2019 11:59:44 +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: ...