Package circuits :: Package lib :: 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
 
poll(self)

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

Inherited from core.BaseComponent: __call__, __repr__, register, unregister

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

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

Static Methods

Inherited from core.BaseComponent: __new__

Class Variables

Inherited from _Poller: channel

Instance Variables

Inherited from core.Manager: manager

Properties

Inherited from core.Manager: channels, components, running, state, ticks

Inherited from object: __class__

Method Details

poll(self)

 
Overrides: _Poller.poll