Skip to content

Instantly share code, notes, and snippets.

@AlexMocioi
Created May 26, 2013 19:23
Show Gist options
  • Save AlexMocioi/5653749 to your computer and use it in GitHub Desktop.
Save AlexMocioi/5653749 to your computer and use it in GitHub Desktop.
Generator numar unic crescator
func idGenerator() chan int {
ids := make(chan int)
go func() {
id := 0 //intializare cu ultimul nr din baza de date
for {
id++
ch <- id
}
}()
return ids
}
ids := idGenerator()
id1 := <-ids
id2 := <-ids
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment