Files @ 33f65e2d0e59
Branch filter:

Location: light9/stubs/txzmq/pushpull.pyi

drewp@bigasterisk.com
who needs a single emitter of all graph change events that anyone on the page can find?
if it's you, revert this change
# Stubs for txzmq.pushpull (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from txzmq.connection import ZmqConnection
from typing import Any

class ZmqPushConnection(ZmqConnection):
    socketType: Any = ...
    def push(self, message: Any) -> None: ...

class ZmqPullConnection(ZmqConnection):
    socketType: Any = ...
    def messageReceived(self, message: Any) -> None: ...
    def onPull(self, message: Any) -> None: ...