Set stores a cursor and returns a short numeric ID
(ctx context.Context, cursor string)
| 17 | type CursorCache interface { |
| 18 | // Set stores a cursor and returns a short numeric ID |
| 19 | Set(ctx context.Context, cursor string) (uint64, error) |
| 20 | |
| 21 | // Get retrieves a cursor by its numeric ID |
| 22 | Get(ctx context.Context, id uint64) (string, error) |
no outgoing calls
no test coverage detected