view stubs/txzmq/pushpull.pyi @ 2122:7c70f3e0af9f

reformat
author drewp@bigasterisk.com
date Thu, 02 Jun 2022 23:23:01 -0700
parents 0f0ff27e55a3
children
line wrap: on
line source

# 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: ...