GetSplit returns Split atomically.
()
| 846 | |
| 847 | // GetSplit returns Split atomically. |
| 848 | func (s *TxStats) GetSplit() int64 { |
| 849 | return atomic.LoadInt64(&s.Split) |
| 850 | } |
| 851 | |
| 852 | // IncSplit increases Split atomically and returns the new value. |
| 853 | func (s *TxStats) IncSplit(delta int64) int64 { |
no outgoing calls