Module ncache.client.enum.TopicSearchOptions

Expand source code
from enum import Enum


class TopicSearchOptions(Enum):
    """
    Specifies the option through which the topic is searched by.
    """
    BY_NAME = 1
    """
    Search by name.
    """
    BY_PATTERN = 2
    """
    Search by pattern.
    """

Classes

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

Specifies the option through which the topic is searched by.

Expand source code
class TopicSearchOptions(Enum):
    """
    Specifies the option through which the topic is searched by.
    """
    BY_NAME = 1
    """
    Search by name.
    """
    BY_PATTERN = 2
    """
    Search by pattern.
    """

Ancestors

  • enum.Enum

Class variables

var BY_NAME

Search by name.

var BY_PATTERN

Search by pattern.