Module: KubeMQ::SubscribeType Private

Defined in:
lib/kubemq/types.rb

Overview

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Numeric subscription type identifiers sent over the wire.

Mapped to the protobuf Subscribe.SubscribeTypeData enum. Application code typically does not use these directly — pass subscription objects to subscribe_to_* methods instead.

Constant Summary collapse

UNDEFINED =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Unspecified subscription type.

0
EVENTS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Real-time fire-and-forget events.

1
EVENTS_STORE =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Durable events with replay capability.

2
COMMANDS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Request/reply commands.

3
QUERIES =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Request/reply queries.

4