智盟项目
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

task_dianzhong_kuaishou_money.go 294 B

il y a 1 an
12345678910111213141516171819202122
  1. package task
  2. import (
  3. "applet/app/task/svc"
  4. "math/rand"
  5. "time"
  6. )
  7. //
  8. func taskDianzhongKuaishouMoney() {
  9. for {
  10. if len(ch) > workerNum {
  11. time.Sleep(time.Millisecond * time.Duration(rand.Intn(1000)))
  12. } else {
  13. goto START
  14. }
  15. }
  16. START:
  17. ch <- 1
  18. svc.DianzhongKuaishouMoney()
  19. <-ch
  20. }