func EfficientConsumer()

in profiling/blocking/efficient.go [14:19]


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