Module ncache.client.enum.EntryType
Expand source code
from enum import Enum
class EntryType (Enum):
"""
Specifies that the entry under question is a cache item.
"""
CACHE_ITEM = 1
"""
Specifies that the entry under question is a cache item.
"""
LIST = 2
"""
Specifies that the entry under question is a collection item of type list.
"""
QUEUE = 3
"""
Specifies that the entry under question is a collection item of type queue.
"""
SET = 4
"""
Specifies that the entry under question is a collection item of type set.
"""
DICTIONARY = 5
"""
Specifies that the entry under question is a collection item of type dictionary.
"""
COUNTER = 6
"""
Specifies that the entry under question is a collection item of type counter.
"""
TYPE_LESS = 7
Classes
class EntryType (value, names=None, *, module=None, qualname=None, type=None, start=1)
-
Specifies that the entry under question is a cache item.
Expand source code
class EntryType (Enum): """ Specifies that the entry under question is a cache item. """ CACHE_ITEM = 1 """ Specifies that the entry under question is a cache item. """ LIST = 2 """ Specifies that the entry under question is a collection item of type list. """ QUEUE = 3 """ Specifies that the entry under question is a collection item of type queue. """ SET = 4 """ Specifies that the entry under question is a collection item of type set. """ DICTIONARY = 5 """ Specifies that the entry under question is a collection item of type dictionary. """ COUNTER = 6 """ Specifies that the entry under question is a collection item of type counter. """ TYPE_LESS = 7
Ancestors
- enum.Enum
Class variables
var CACHE_ITEM
-
Specifies that the entry under question is a cache item.
var COUNTER
-
Specifies that the entry under question is a collection item of type counter.
var DICTIONARY
-
Specifies that the entry under question is a collection item of type dictionary.
var LIST
-
Specifies that the entry under question is a collection item of type list.
var QUEUE
-
Specifies that the entry under question is a collection item of type queue.
var SET
-
Specifies that the entry under question is a collection item of type set.
var TYPE_LESS