Module ncache.client.enum.WriteBehindOpStatus

Expand source code
from enum import Enum


class WriteBehindOpStatus(Enum):
    """
    Enumeration that defines the staus of write behind operation.
    """
    FAILURE = 1
    """
    If user code returned false
    """

    SUCCESS = 2
    """
    If write behind operation was successful
    """

Classes

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

Enumeration that defines the staus of write behind operation.

Expand source code
class WriteBehindOpStatus(Enum):
    """
    Enumeration that defines the staus of write behind operation.
    """
    FAILURE = 1
    """
    If user code returned false
    """

    SUCCESS = 2
    """
    If write behind operation was successful
    """

Ancestors

  • enum.Enum

Class variables

var FAILURE

If user code returned false

var SUCCESS

If write behind operation was successful