Clean_objects(time, *args)
Stops and deletes PyoObjects after a given time.
Parameters:
time : float Time, in seconds, to wait before calling stop on the given objects and deleting them. *args : PyoObject(s) Objects to delete.
Methods:
start() : Starts the thread. The timer begins on this call.
Examples:
>>> s = Server().boot() >>> s.start() >>> a = Noise(mul=.5).out() >>> b = Fader(fadein=.1, fadeout=1, dur=5).play() >>> c = Biquad(a, freq=1000, q=2, mul=b).out() >>> dump = Clean_objects(time=6, a, b, c) >>> dump.start()