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
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pools.go 285B

123456789101112131415161718
  1. package stats
  2. import "sync"
  3. var streamInfoPool = sync.Pool{
  4. New: func() interface{} {
  5. return streamInfo{}
  6. },
  7. }
  8. func acquireStreamInfo() streamInfo {
  9. return streamInfoPool.Get().(streamInfo)
  10. }
  11. func releaseStreamInfo(info streamInfo) {
  12. info.Reset()
  13. streamInfoPool.Put(info)
  14. }