NewHandleStore creates a new handle store
()
| 15 | |
| 16 | // NewHandleStore creates a new handle store |
| 17 | func newHandleStore() *handleStore { |
| 18 | return newHandleStoreWithStartID(1) |
| 19 | } |
| 20 | |
| 21 | // NewHandleStoreWithStartID creates a new handle store with custom start ID (for testing) |
| 22 | func newHandleStoreWithStartID(startID int32) *handleStore { |