HI everyone I´m Eduardo from Guatemala and I'm beginer. I'm interesting in all scope golang in fact I was download a little book about it, but I need learn more about callbacks because the book don´t has enough information on callbacks. May somebody tell me where can I find more information?. HELP ME PLEASE THANKS God Bless you
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thank you to take time to respons me. Specifily I don't have a problem to solve in fact the problem is I don't know how the callbacks works. Well my goal is to learn golang and all its semantic and after that focus my time on how to program in backend with go.. but I need to learn its semantic before, and my book's name is " Learning-Go-latest " it has a topic named callbacks on page 29. I will look more references to learn callbacks or golang in general. Do you know about some reference online or offline maybe another book wich always is oriented on develop in the scope web Do you know if someone would like to have an apprentice?.of before hand thanks. God Bless yousorry by my bad english but I'am lerning too
sort.Slice and sync.Map.Range both accepts function/closure as algorithm parameter, not as callback.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscribe@googlegroups.com.
-j
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
// this func executes callback at some point
// you can specify any func signature for callback when you construct your own func that calls back
func CallsBack(arg1 int, arg2 string, callback func())// this func sends a signal on callback that you listen for on another goroutine to execute your callback action
// SignalsCallback may block until callback is read by you, or if the chan is buffered it may continue without callback being read
func SignalsCallback(arg1 int, arg2 string, callback <-chan struct{})func SignalsCallback(arg1 int, arg2 string, callback chan<- struct{})
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.