Gst.Iterator.prototype.push

function push(other:Gst.Iterator):void {
    // Gjs wrapper for gst_iterator_push()
}

Pushes other iterator onto it. All calls performed on it are forwarded to other. If other returns Gst.IteratorResult.done, it is popped again and calls are handled by it again.

This function is mainly used by objects implementing the iterator next function to recurse into substructures.

When Gst.resync is called on it, other will automatically be popped.

MT safe.

other

The Gst.Iterator to push