[go-nuts] Re: Execution of goroutines

2022-04-07 Thread golf_mike
Ok, thanks that makes sense! On Wednesday, April 6, 2022 at 6:56:42 PM UTC+2 Brian Candler wrote: > > Is there maybe something blocking involved in http.Get()? > > Yes of course - first establishing a TCP connection across the network, > then sending data over it and waiting for the response. > >

[go-nuts] Re: Execution of goroutines

2022-04-06 Thread Brian Candler
> Is there maybe something blocking involved in http.Get()? Yes of course - first establishing a TCP connection across the network, then sending data over it and waiting for the response. Each of these is a point where the goroutine gets descheduled because it has nothing more to do; it's waiti