蛋蛋星球 后台端
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

task_egg_energy_auto_adjust_price.go 328 B

hace 1 semana
12345678910111213141516171819202122
  1. package task
  2. import (
  3. "applet/app/task/svc"
  4. "math/rand"
  5. "time"
  6. "xorm.io/xorm"
  7. )
  8. func taskEggEnergyAutoAdjustPrice(eg *xorm.Engine) {
  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.EggEnergyAutoAdjustPrice(eg)
  19. <-ch
  20. }