Module ncache.client.enum.DistributedDataStructure

Expand source code
from enum import Enum


class DistributedDataStructure(Enum):
    """
    Enumeration that defines the data type.
    """
    LIST = 1
    """
    For distributed list.
    """
    QUEUE = 2
    """
    For distributed queue.
    """
    SET = 3
    """
    For distributed set.
    """
    DICTIONARY = 4
    """
    For distributed dictionary.
    """
    COUNTER = 5
    """
    For distributed counter.
    """

Classes

class DistributedDataStructure (value, names=None, *, module=None, qualname=None, type=None, start=1)

Enumeration that defines the data type.

Expand source code
class DistributedDataStructure(Enum):
    """
    Enumeration that defines the data type.
    """
    LIST = 1
    """
    For distributed list.
    """
    QUEUE = 2
    """
    For distributed queue.
    """
    SET = 3
    """
    For distributed set.
    """
    DICTIONARY = 4
    """
    For distributed dictionary.
    """
    COUNTER = 5
    """
    For distributed counter.
    """

Ancestors

  • enum.Enum

Class variables

var COUNTER

For distributed counter.

var DICTIONARY

For distributed dictionary.

var LIST

For distributed list.

var QUEUE

For distributed queue.

var SET

For distributed set.