For simplicity in early development, I gave each check their own goroutine to feed the shared channel. Since goroutines are much lighter weight than Java threads, I didn't (and honestly still don't) think too much about this.
Curious if this is something folks will actually need for their system. If so, it would be good to get some input from folks.
For simplicity in early development, I gave each check their own
goroutine
to feed the shared channel. Sincegoroutines
are much lighter weight than Java threads, I didn't (and honestly still don't) think too much about this.Curious if this is something folks will actually need for their system. If so, it would be good to get some input from folks.