OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ifmap_sandesh_context.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef IFMAP__IFMAP_SANDESH_CONTEXT_H__
6 #define IFMAP__IFMAP_SANDESH_CONTEXT_H__
7 
8 #include <sandesh/sandesh.h>
9 
10 class IFMapServer;
11 
13 public:
15  : ifmap_server_(ifmap_server), page_limit_(0), iter_limit_(0) {
16  }
17  uint32_t page_limit() const { return page_limit_; }
19  uint32_t iter_limit() const { return iter_limit_; }
21 
23 
24 private:
26  uint32_t page_limit_;
27  uint32_t iter_limit_;
28 };
29 
30 #endif // IFMAP__IFMAP_SANDESH_CONTEXT_H__
IFMapServer * ifmap_server()
uint32_t iter_limit() const
void set_page_limit(uint32_t page_limit)
IFMapSandeshContext(IFMapServer *ifmap_server)
uint32_t page_limit() const
void set_iter_limit(uint32_t iter_limit)