mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-08 20:17:17 +00:00
26 lines
654 B
Python
26 lines
654 B
Python
from tfw.networking import ServerUplinkConnector, ServerConnector
|
|
from tfw.config import TFWENV
|
|
|
|
|
|
class ConnAddrMixin:
|
|
@property
|
|
def uplink_conn_addr(self):
|
|
return f'tcp://localhost:{TFWENV.PULL_PORT}'
|
|
|
|
@property
|
|
def downlink_conn_addr(self):
|
|
return f'tcp://localhost:{TFWENV.PUB_PORT}'
|
|
|
|
|
|
class TFWServerUplinkConnector(ServerUplinkConnector, ConnAddrMixin):
|
|
def __init__(self):
|
|
super().__init__(self.uplink_conn_addr)
|
|
|
|
|
|
class TFWServerConnector(ServerConnector, ConnAddrMixin):
|
|
def __init__(self):
|
|
super().__init__(
|
|
self.downlink_conn_addr,
|
|
self.uplink_conn_addr
|
|
)
|