Infinispan HotRod C++ Client  8.2.1.Final
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TimeUnit.h
Go to the documentation of this file.
1 #ifndef ISPN_HOTROD_TIMEUNIT_H
2 #define ISPN_HOTROD_TIMEUNIT_H
3 
4 namespace infinispan {
5 namespace hotrod {
6 
13  enum TimeUnit {
14  SECONDS = 0x00,
15  MILLISECONDS = 0x01,
16  NANOSECONDS = 0x02,
17  MICROSECONDS = 0x03,
18  MINUTES = 0x04,
19  DAYS = 0x06,
20  HOURS = 0x05,
21  DEFAULT = 0x07,
22  INFINITUM = 0x08
23  };
24 }} // namespace
25 
26 #endif /* ISPN_HOTROD_TIMEUNIT_H */
Definition: TimeUnit.h:14
Definition: TimeUnit.h:18
Definition: TimeUnit.h:15
Definition: TimeUnit.h:21
Definition: TimeUnit.h:17
TimeUnit
Definition: TimeUnit.h:13
Definition: TimeUnit.h:16
Definition: TimeUnit.h:19
Definition: TimeUnit.h:20
Definition: TimeUnit.h:22