TimedQueue

Inheritance diagram of TimedQueue
class TimedQueue(arg=None)[source]

A FIFO that keeps all the values introduced at least for a given time. Applied to some device servers, to force States to be kept at least a minimum time. Previously named as PyTango_utils.device.StateQueue pop(): The value is removed only if delete_time has been reached. at least 1 value is always kept in the list

Import from taurus.core.util.containers as:

from taurus.core.util.containers import TimedQueue
append(obj, keep=15)[source]

Inserts a tuple with (value,insert_time,delete_time=now+keep)

index(obj)[source]

Return first index of value.

Raises ValueError if the value is not present.

pop(index=0)[source]

Returns the indicated value, or the first one; but removes only if delete_time has been reached. All values are returned at least once. When the queue has only a value, it is not deleted.