qredisclient
scanresponse.h
1 #pragma once
2 #include "response.h"
3 
4 namespace RedisClient {
5 
6 class ScanResponse : public Response
7 {
8 public:
9  ScanResponse(const QByteArray &resp): Response(resp) {}
10 
11  long long getCursor();
12  QVariantList getCollection();
13 
14  static bool isValidScanResponse(Response &r);
15 };
16 
17 }
Definition: command.h:8
Definition: scanresponse.h:6
Definition: response.h:12