Package SpecClient :: Module SpecEventsDispatcher :: Class EventsQueue
[hide private]
[frames] | no frames]

Class EventsQueue

source code

Queue.Queue --+
              |
             EventsQueue

Instance Methods [hide private]
 
__init__(self) source code
 
get(self)
Remove and return an item from the queue.
source code
 
put(self, event)
Put an event into the queue.
source code

Inherited from Queue.Queue: empty, full, get_nowait, join, put_nowait, qsize, task_done

Inherited from Queue.Queue (private): _get, _init, _put, _qsize

Method Details [hide private]

__init__(self)
(Constructor)

source code 
Overrides: Queue.Queue.__init__

get(self)

source code 

Remove and return an item from the queue.

Overrides: Queue.Queue.get

put(self, event)

source code 

Put an event into the queue.

Overrides: Queue.Queue.put