runtimepy.net.mixin
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/mixin.py

Various networking-related class utilities.

 
Modules
       
asyncio

 
Classes
       
builtins.object
BinaryMessageQueueMixin
TransportMixin

 
class BinaryMessageQueueMixin(builtins.object)
    BinaryMessageQueueMixin() -> 'None'
 
A mixin for adding a 'queue' attribute.
 
  Methods defined here:
__init__(self) -> 'None'
Initialize this protocol.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
class TransportMixin(builtins.object)
    TransportMixin(transport: '_asyncio.BaseTransport') -> 'None'
 
A class simplifying evaluation of local and remote addresses.
 
  Methods defined here:
__init__(self, transport: '_asyncio.BaseTransport') -> 'None'
Initialize this instance.
logger_name(self, prefix: 'str' = '') -> 'str'
Get a logger name for this connection.
set_transport(self, transport: '_asyncio.BaseTransport') -> 'None'
Set the transport for this instance.

Readonly properties defined here:
socket
Get this instance's underlying socket.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__annotations__ = {'_transport': '_asyncio.BaseTransport', 'remote_address': '_Optional[_IpHost]'}