Package circuits :: Package net :: Module pollers :: Class Select

Class Select

    object --+            
             |            
  core.Manager --+        
                 |        
core.BaseComponent --+    
                     |    
               _Poller --+
                         |
                        Select

Select(...) -> new Select Poller Component

Creates a new Select Poller Component that uses the select poller implementation. This poller is not reccomneded but is available for legacy reasons as most systems implement select-based polling for backwards compatibility.

Instance Methods
new Select Poller Component
__init__(...)
initializes x; see x.__class__.__doc__ for signature
 
__tick__(self)

Inherited from _Poller: addReader, addWriter, discard, isReading, isWriting, removeReader, removeWriter

Inherited from core.BaseComponent: __repr__, register, unregister

Inherited from core.Manager: __add__, __iadd__, __isub__, __len__, __sub__, flush, join, push, run, send, start, stop

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

Static Methods

Inherited from core.BaseComponent: __new__

Class Variables
  channel = 'select'
The Component's Channel
Instance Variables

Inherited from core.Manager: manager

Properties

Inherited from core.Manager: name, running, state

Inherited from object: __class__

Method Details

__init__(...)
(Constructor)

 

initializes x; see x.__class__.__doc__ for signature

Returns: new Select Poller Component
Overrides: object.__init__
(inherited documentation)