[go-nuts] Re: named go routines?

2018-09-03 Thread tang . rosechild
you may give a context to the goroutine? 在 2018年9月3日星期一 UTC+8下午2:03:24,Robert Engels写道: > > Hi, I recently started developing more complex concurrent Go applications. > > Using the debugger is very difficult - since when looking for a particular > routine, the list only shows the top level method

[go-nuts] Re: named go routines?

2018-09-03 Thread Kaveh Shahbazian
Go's concurrency is based on CSP (communication sequence process), not Actor Model. Hence you can have channels and manage all the communications through channels. For this, there is no need for named actors - unlike the actor model, where all communications are managed via mailboxes. These are