Class Comm

A message-oriented communication object, representing an established

Declaration

class Comm(ABC)
source link

Documentation

communication channel.  There should be only one reader and one
writer at a time: to manage current communications, even with a
single peer, you must create distinct ``Comm`` objects.

Messages are arbitrary Python objects.  Concrete implementations
of this class can implement different serialization mechanisms
depending on the underlying transport's characteristics.

Methods

Class methods

Subclasses

Reexports