Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
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.

pools.go 344B

1234567891011121314151617181920
  1. package stats
  2. import "sync"
  3. var streamInfoPool = sync.Pool{
  4. New: func() any {
  5. return &streamInfo{
  6. tags: make(map[string]string),
  7. }
  8. },
  9. }
  10. func acquireStreamInfo() *streamInfo {
  11. return streamInfoPool.Get().(*streamInfo) //nolint: forcetypeassert
  12. }
  13. func releaseStreamInfo(info *streamInfo) {
  14. info.Reset()
  15. streamInfoPool.Put(info)
  16. }