class Async::Container::Statistics

def << other

@parameter other [Statistics] The statistics to append.
Append another statistics instance into this one.
def << other
	@spawns += other.spawns
	@restarts += other.restarts
	@failures += other.failures
end