func InefficientConsumer()

in profiling/blocking/inefficient.go [7:12]


func InefficientConsumer() {
	for val := range Ch {
		time.Sleep(time.Second) // slow processing
		println("Received:", val)
	}
}