runtimepy.net.websocket
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/websocket/__init__.py

A module aggregating all WebSocket-related interfaces.

 
Package Contents
       
connection

 
Classes
       
runtimepy.net.connection.Connection(runtimepy.mixins.logging.LoggerMixinLevelControl, runtimepy.mixins.environment.ChannelEnvironmentMixin, abc.ABC)
runtimepy.net.websocket.connection.WebsocketConnection
runtimepy.net.websocket.connection.EchoWebsocketConnection(runtimepy.net.websocket.connection.WebsocketConnection, runtimepy.net.connection.EchoConnection)
runtimepy.net.websocket.connection.NullWebsocketConnection(runtimepy.net.websocket.connection.WebsocketConnection, runtimepy.net.connection.NullConnection)

 
class EchoWebsocketConnection(WebsocketConnection, runtimepy.net.connection.EchoConnection)
    EchoWebsocketConnection(protocol: '_Union[_WebSocketClientProtocol, _WebSocketServerProtocol]') -> 'None'
 
An echo connection for WebSocket.
 
 
Method resolution order:
EchoWebsocketConnection
WebsocketConnection
runtimepy.net.connection.EchoConnection
runtimepy.net.connection.Connection
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
builtins.object

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {}

Methods inherited from WebsocketConnection:
__init__(self, protocol: '_Union[_WebSocketClientProtocol, _WebSocketServerProtocol]') -> 'None'
Initialize this connection.
async close(self) -> 'None'
Close this connection.

Class methods inherited from WebsocketConnection:
async app(stop_sig: '_asyncio.Event', init: 'ConnectionInit[T]' = None, manager: '_ConnectionManager' = None, serving_callback: '_Callable[[_WebSocketServer], None]' = None, **kwargs) -> 'None' from abc.ABCMeta
Run a WebSocket-server application.
client(uri: 'str', **kwargs) -> '_AsyncIterator[T]' from abc.ABCMeta
A wrapper for connecting a client.
async create_connection(uri: 'str', **kwargs) -> 'T' from abc.ABCMeta
Connect a client to an endpoint.
create_pair() -> '_AsyncIterator[tuple[T, T]]' from abc.ABCMeta
Obtain a connected pair of WebsocketConnection objects.
serve(init: 'ConnectionInit[T]' = None, stop_sig: '_asyncio.Event' = None, manager: '_ConnectionManager' = None, **kwargs) -> '_AsyncIterator[_WebSocketServer]' from abc.ABCMeta
Serve a WebSocket server.
server_handler(init: 'ConnectionInit[T]' = None, stop_sig: '_asyncio.Event' = None, manager: '_ConnectionManager' = None) -> '_Callable[[_WebSocketServerProtocol], _Awaitable[None]]' from abc.ABCMeta
A wrapper for passing in a websocket handler and initializing a
connection.

Methods inherited from runtimepy.net.connection.EchoConnection:
async process_binary(self, data: bytes) -> bool
Process a binary frame.
async process_text(self, data: str) -> bool
Process a text frame.

Methods inherited from runtimepy.net.connection.Connection:
async async_init(self) -> bool
A runtime initialization routine (executes during 'process').
disable(self, reason: str) -> None
Disable this connection.
disable_extra(self) -> None
Additional tasks to perform when disabling.
async disable_in(self, time: float) -> None
A method for disabling a connection after some delay.
init(self) -> None
Initialize this instance.
log_metrics(self, label: str = 'conn') -> None
Log connection metrics.
async process(self, stop_sig: asyncio.locks.Event = None, disable_time: float = None, backoff: runtimepy.net.backoff.ExponentialBackoff = None) -> None
Process tasks for this connection while the connection is active.
async restart(self) -> bool
Reset necessary underlying state for this connection to 'process'
again.
send_binary(self, data: Union[bytes, bytearray, memoryview]) -> None
Enqueue a binary message tos end.
send_text(self, data: str) -> None
Enqueue a text message to send.

Readonly properties inherited from runtimepy.net.connection.Connection:
auto_restart
Determine if this connection should be automatically restarted.
disabled
Determine if this connection is disabled.

Data and other attributes inherited from runtimepy.net.connection.Connection:
byte_order = <ByteOrder.NETWORK: 4>
connected = True
default_auto_restart = False
uses_binary_tx_queue = True
uses_text_tx_queue = True

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

Methods inherited from vcorelib.logging.LoggerMixin:
log_time(self, message: str, *args, level: int = 20, reminder: bool = False, **kwargs) -> Iterator[NoneType]
A simple wrapper.

Data descriptors inherited from vcorelib.logging.LoggerMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

 
class NullWebsocketConnection(WebsocketConnection, runtimepy.net.connection.NullConnection)
    NullWebsocketConnection(protocol: '_Union[_WebSocketClientProtocol, _WebSocketServerProtocol]') -&gt; 'None'
 
A null WebSocket connection.
 
 
Method resolution order:
NullWebsocketConnection
WebsocketConnection
runtimepy.net.connection.NullConnection
runtimepy.net.connection.Connection
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
builtins.object

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {}

Methods inherited from WebsocketConnection:
__init__(self, protocol: '_Union[_WebSocketClientProtocol, _WebSocketServerProtocol]') -> 'None'
Initialize this connection.
async close(self) -> 'None'
Close this connection.

Class methods inherited from WebsocketConnection:
async app(stop_sig: '_asyncio.Event', init: 'ConnectionInit[T]' = None, manager: '_ConnectionManager' = None, serving_callback: '_Callable[[_WebSocketServer], None]' = None, **kwargs) -> 'None' from abc.ABCMeta
Run a WebSocket-server application.
client(uri: 'str', **kwargs) -> '_AsyncIterator[T]' from abc.ABCMeta
A wrapper for connecting a client.
async create_connection(uri: 'str', **kwargs) -> 'T' from abc.ABCMeta
Connect a client to an endpoint.
create_pair() -> '_AsyncIterator[tuple[T, T]]' from abc.ABCMeta
Obtain a connected pair of WebsocketConnection objects.
serve(init: 'ConnectionInit[T]' = None, stop_sig: '_asyncio.Event' = None, manager: '_ConnectionManager' = None, **kwargs) -> '_AsyncIterator[_WebSocketServer]' from abc.ABCMeta
Serve a WebSocket server.
server_handler(init: 'ConnectionInit[T]' = None, stop_sig: '_asyncio.Event' = None, manager: '_ConnectionManager' = None) -> '_Callable[[_WebSocketServerProtocol], _Awaitable[None]]' from abc.ABCMeta
A wrapper for passing in a websocket handler and initializing a
connection.

Methods inherited from runtimepy.net.connection.NullConnection:
async process_binary(self, data: bytes) -> bool
Process a binary frame.
async process_text(self, data: str) -> bool
Process a text frame.

Methods inherited from runtimepy.net.connection.Connection:
async async_init(self) -> bool
A runtime initialization routine (executes during 'process').
disable(self, reason: str) -> None
Disable this connection.
disable_extra(self) -> None
Additional tasks to perform when disabling.
async disable_in(self, time: float) -> None
A method for disabling a connection after some delay.
init(self) -> None
Initialize this instance.
log_metrics(self, label: str = 'conn') -> None
Log connection metrics.
async process(self, stop_sig: asyncio.locks.Event = None, disable_time: float = None, backoff: runtimepy.net.backoff.ExponentialBackoff = None) -> None
Process tasks for this connection while the connection is active.
async restart(self) -> bool
Reset necessary underlying state for this connection to 'process'
again.
send_binary(self, data: Union[bytes, bytearray, memoryview]) -> None
Enqueue a binary message tos end.
send_text(self, data: str) -> None
Enqueue a text message to send.

Readonly properties inherited from runtimepy.net.connection.Connection:
auto_restart
Determine if this connection should be automatically restarted.
disabled
Determine if this connection is disabled.

Data and other attributes inherited from runtimepy.net.connection.Connection:
byte_order = <ByteOrder.NETWORK: 4>
connected = True
default_auto_restart = False
uses_binary_tx_queue = True
uses_text_tx_queue = True

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

Methods inherited from vcorelib.logging.LoggerMixin:
log_time(self, message: str, *args, level: int = 20, reminder: bool = False, **kwargs) -> Iterator[NoneType]
A simple wrapper.

Data descriptors inherited from vcorelib.logging.LoggerMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

 
class WebsocketConnection(runtimepy.net.connection.Connection)
    WebsocketConnection(protocol: '_Union[_WebSocketClientProtocol, _WebSocketServerProtocol]') -&gt; 'None'
 
A simple websocket connection interface.
 
 
Method resolution order:
WebsocketConnection
runtimepy.net.connection.Connection
runtimepy.mixins.logging.LoggerMixinLevelControl
vcorelib.logging.LoggerMixin
runtimepy.mixins.environment.ChannelEnvironmentMixin
abc.ABC
builtins.object

Methods defined here:
__init__(self, protocol: '_Union[_WebSocketClientProtocol, _WebSocketServerProtocol]') -> 'None'
Initialize this connection.
async close(self) -> 'None'
Close this connection.

Class methods defined here:
async app(stop_sig: '_asyncio.Event', init: 'ConnectionInit[T]' = None, manager: '_ConnectionManager' = None, serving_callback: '_Callable[[_WebSocketServer], None]' = None, **kwargs) -> 'None' from abc.ABCMeta
Run a WebSocket-server application.
client(uri: 'str', **kwargs) -> '_AsyncIterator[T]' from abc.ABCMeta
A wrapper for connecting a client.
async create_connection(uri: 'str', **kwargs) -> 'T' from abc.ABCMeta
Connect a client to an endpoint.
create_pair() -> '_AsyncIterator[tuple[T, T]]' from abc.ABCMeta
Obtain a connected pair of WebsocketConnection objects.
serve(init: 'ConnectionInit[T]' = None, stop_sig: '_asyncio.Event' = None, manager: '_ConnectionManager' = None, **kwargs) -> '_AsyncIterator[_WebSocketServer]' from abc.ABCMeta
Serve a WebSocket server.
server_handler(init: 'ConnectionInit[T]' = None, stop_sig: '_asyncio.Event' = None, manager: '_ConnectionManager' = None) -> '_Callable[[_WebSocketServerProtocol], _Awaitable[None]]' from abc.ABCMeta
A wrapper for passing in a websocket handler and initializing a
connection.

Data and other attributes defined here:
__abstractmethods__ = frozenset()
__annotations__ = {}

Methods inherited from runtimepy.net.connection.Connection:
async async_init(self) -> bool
A runtime initialization routine (executes during 'process').
disable(self, reason: str) -> None
Disable this connection.
disable_extra(self) -> None
Additional tasks to perform when disabling.
async disable_in(self, time: float) -> None
A method for disabling a connection after some delay.
init(self) -> None
Initialize this instance.
log_metrics(self, label: str = 'conn') -> None
Log connection metrics.
async process(self, stop_sig: asyncio.locks.Event = None, disable_time: float = None, backoff: runtimepy.net.backoff.ExponentialBackoff = None) -> None
Process tasks for this connection while the connection is active.
async process_binary(self, data: bytes) -> bool
Process a binary frame.
async process_text(self, data: str) -> bool
Process a text frame.
async restart(self) -> bool
Reset necessary underlying state for this connection to 'process'
again.
send_binary(self, data: Union[bytes, bytearray, memoryview]) -> None
Enqueue a binary message tos end.
send_text(self, data: str) -> None
Enqueue a text message to send.

Readonly properties inherited from runtimepy.net.connection.Connection:
auto_restart
Determine if this connection should be automatically restarted.
disabled
Determine if this connection is disabled.

Data and other attributes inherited from runtimepy.net.connection.Connection:
byte_order = <ByteOrder.NETWORK: 4>
connected = True
default_auto_restart = False
uses_binary_tx_queue = True
uses_text_tx_queue = True

Methods inherited from runtimepy.mixins.logging.LoggerMixinLevelControl:
setup_level_channel(self, env: runtimepy.channel.environment.ChannelEnvironment, name: str = 'log_level', initial: str = 'info', description: str = 'Text-log level filter for this environment.') -> None
Add a commandable log-level channel to the environment.

Methods inherited from vcorelib.logging.LoggerMixin:
log_time(self, message: str, *args, level: int = 20, reminder: bool = False, **kwargs) -> Iterator[NoneType]
A simple wrapper.

Data descriptors inherited from vcorelib.logging.LoggerMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Methods inherited from runtimepy.mixins.environment.ChannelEnvironmentMixin:
register_channel_metrics(self, name: str, channel: runtimepy.metrics.channel.ChannelMetrics, verb: str) -> None
Register individual channel metrics.
register_connection_metrics(self, metrics: runtimepy.metrics.connection.ConnectionMetrics, namespace: str = 'metrics') -> None
Register connection metrics.
register_task_metrics(self, metrics: runtimepy.metrics.task.PeriodicTaskMetrics, namespace: str = 'metrics') -> None
Register periodic task metrics.

 
Data
        __all__ = ['WebsocketConnection', 'EchoWebsocketConnection', 'NullWebsocketConnection']