IncNodeDeref increases NodeDeref atomically and returns the new value.
(delta int64)
| 821 | |
| 822 | // IncNodeDeref increases NodeDeref atomically and returns the new value. |
| 823 | func (s *TxStats) IncNodeDeref(delta int64) int64 { |
| 824 | return atomic.AddInt64(&s.NodeDeref, delta) |
| 825 | } |
| 826 | |
| 827 | // GetRebalance returns Rebalance atomically. |
| 828 | func (s *TxStats) GetRebalance() int64 { |
no outgoing calls