Files
@ a1b30c3463b4
Branch filter:
Location: light9/stubs/txzmq/test/test_router_dealer.pyi - annotation
a1b30c3463b4
837 B
text/plain
add some old docs that still look good
0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 0f0ff27e55a3 | # Stubs for txzmq.test.test_router_dealer (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from twisted.trial import unittest
from txzmq.router_dealer import ZmqDealerConnection, ZmqRouterConnection
from typing import Any
class ZmqTestRouterConnection(ZmqRouterConnection):
message_count: int = ...
def gotMessage(self, senderId: Any, message: Any) -> None: ...
class ZmqTestDealerConnection(ZmqDealerConnection):
message_count: int = ...
def gotMessage(self, message: Any) -> None: ...
class ZmqRouterDealerTwoFactoryConnectionTestCase(unittest.TestCase):
REQUEST_COUNT: int = ...
factory1: Any = ...
dealer: Any = ...
factory2: Any = ...
router: Any = ...
def setUp(self) -> None: ...
def tearDown(self) -> None: ...
def test_start(self): ...
|