Package circuits :: Package net :: Module sockets :: Class Write

Class Write

object --+    
         |    
core.Event --+
             |
            Write

Write Event

This Event is used to notify a client, client connection or server that we have data to be written.


Notes:
Instance Methods
 
__init__(self, *args)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Inherited from core.Event: __eq__, __getitem__, __repr__

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables

Inherited from core.Event: target

Instance Variables

Inherited from core.Event: channel, name

Properties

Inherited from object: __class__

Method Details

__init__(self, *args)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Parameters:
  • args - Client: (data) Server: (sock, data)
Overrides: object.__init__