ipserver threads package¶
ipserver.threads module¶
- class ConnSockListener(socket_server, conn_bucket, args, factory, pipeline, view)¶
Bases:
threading.Thread
- Parameters
socket_server (SocketServer) –
conn_bucket (ConnBucket) –
args (Object) –
factory (ipserver.core.object_factory.ObjectFactory) –
pipeline (Pipeline) –
view (ViewHelper) –
- initialize()¶
- run()¶
Method representing the thread’s activity.
You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.
- class ConnSockReceiver(forwarding_socket, pipeline, view, dumpfile)¶
Bases:
threading.Thread
- Parameters
forwarding_socket (ipserver.service.forwarding_socket.ForwardingSocket) –
pipeline (Pipeline) –
view (ViewHelper) –
dumpfile (DumpFile) –
- initialize(conn_bucket, conn_sock)¶
- Parameters
conn_bucket (ConnBucket) –
conn_sock (ConnSock) –
- run()¶
Method representing the thread’s activity.
You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.
- class ConnSockSender(forwarding_socket, pipeline, view, dumpfile)¶
Bases:
threading.Thread
- Parameters
forwarding_socket (ipserver.service.forwarding_socket.ForwardingSocket) –
pipeline (Pipeline) –
view (ViewHelper) –
dumpfile (DumpFile) –
- initialize(conn_bucket, conn_sock)¶
- Parameters
conn_bucket (ConnBucket) –
conn_sock (ConnSock) –
- run()¶
Method representing the thread’s activity.
You may override this method in a subclass. The standard run() method invokes the callable object passed to the object’s constructor as the target argument, if any, with sequential and keyword arguments taken from the args and kwargs arguments, respectively.