Files
@ 9d6c7cab31b0
Branch filter:
Location: light9/stubs/txzmq/test/test_router_dealer.pyi - annotation
9d6c7cab31b0
837 B
text/plain
refactor, though i think i want to remove this since it's redundant with metrics
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): ...
|