class Async::Node

def finished?

@returns [Boolean]
children set is empty.
Whether the node can be consumed safely. By default, checks if the
def finished?
	@children.nil? || @children.finished?
end