class Async::Node

def stop(later = false)

@parameter later [Boolean] Whether to defer stopping until some point in the future.

Attempt to stop the current node immediately, including all non-transient children. Invokes {#stop_children} to stop all children.
def stop(later = false)
	# The implementation of this method may defer calling `stop_children`.
	stop_children(later)
end