Files @ 9dd331caa23b
Branch filter:

Location: light9/stubs/txzmq/pushpull.pyi

drewp@bigasterisk.com
cleanups to help with first build success
Ignore-this: b6d402ca6dd2d97fb03c390713efbd07
# 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: ...