Query does the query(ies) in req, pools the request and persists any change to the underlying storage.
(req *types.Request, isLeader bool)
| 682 | // Query does the query(ies) in req, pools the request and persists any change to |
| 683 | // the underlying storage. |
| 684 | func (s *State) Query(req *types.Request, isLeader bool) (ref *QueryTracker, resp *types.Response, err error) { |
| 685 | return s.QueryWithContext(context.Background(), req, isLeader) |
| 686 | } |
| 687 | |
| 688 | // QueryWithContext does the query(ies) in req, pools the request and persists any change to |
| 689 | // the underlying storage. |
nothing calls this directly
no test coverage detected