runtimepy.net.arbiter.tcp
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/arbiter/tcp/__init__.py

A module implementing a basic TCP connection factory that can be extended.

 
Package Contents
       
json

 
Classes
       
runtimepy.net.arbiter.factory.connection.ConnectionFactory(builtins.object)
TcpConnectionFactory(runtimepy.net.arbiter.factory.connection.ConnectionFactory, typing.Generic)
typing.Generic(builtins.object)
TcpConnectionFactory(runtimepy.net.arbiter.factory.connection.ConnectionFactory, typing.Generic)

 
class TcpConnectionFactory(runtimepy.net.arbiter.factory.connection.ConnectionFactory, typing.Generic)
    A class implementing a basic TCP connection factory.
 
 
Method resolution order:
TcpConnectionFactory
runtimepy.net.arbiter.factory.connection.ConnectionFactory
typing.Generic
builtins.object

Methods defined here:
async client(self, name: str, *args, **kwargs) -> runtimepy.net.connection.Connection
Create a client connection.
async server_task(self, stop_sig: asyncio.locks.Event, manager: runtimepy.net.manager.ConnectionManager, started_sem: asyncio.locks.Semaphore, *args, **kwargs) -> Awaitable[NoneType]
Create a task that will run a connection server.

Data and other attributes defined here:
__annotations__ = {'kind': type[~T]}
__orig_bases__ = (<class 'runtimepy.net.arbiter.factory.connection.ConnectionFactory'>, typing.Generic[~T])
__parameters__ = (~T,)

Data descriptors inherited from runtimepy.net.arbiter.factory.connection.ConnectionFactory:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Class methods inherited from typing.Generic:
__class_getitem__(...) from builtins.type
Parameterizes a generic class.
 
At least, parameterizing a generic class is the *main* thing this
method does. For example, for some generic class `Foo`, this is called
when we do `Foo[int]` - there, with `cls=Foo` and `params=int`.
 
However, note that this method is also called when defining generic
classes in the first place with `class Foo[T]: ...`.
__init_subclass__(...) from builtins.type
Function to initialize subclasses.

 
Data
        T = ~T