Files @ 3c523c71da29
Branch filter:

Location: light9/stubs/txzmq/pushpull.pyi

Drew Perttula
pyflakes cleanups and some refactors
Ignore-this: f7372e678699175feb4e628eee3d768c
# 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: ...