(bytes uint64)
| 165 | } |
| 166 | |
| 167 | func (s *QueryStats) AddFetchedDataBytes(bytes uint64) { |
| 168 | if s == nil { |
| 169 | return |
| 170 | } |
| 171 | |
| 172 | atomic.AddUint64(&s.FetchedDataBytes, bytes) |
| 173 | } |
| 174 | |
| 175 | func (s *QueryStats) LoadFetchedDataBytes() uint64 { |
| 176 | if s == nil { |
no outgoing calls