| 17 | ) |
| 18 | |
| 19 | type KVIPList struct { |
| 20 | ipTable *kvstore.Table[*pb.IPItem] |
| 21 | versionsTable *kvstore.Table[int64] |
| 22 | |
| 23 | encoder *IPItemEncoder[*pb.IPItem] |
| 24 | |
| 25 | cleanTicker *time.Ticker |
| 26 | |
| 27 | isClosed bool |
| 28 | |
| 29 | offsetItemKey string |
| 30 | } |
| 31 | |
| 32 | func NewKVIPList() (*KVIPList, error) { |
| 33 | var db = &KVIPList{ |
nothing calls this directly
no outgoing calls
no test coverage detected