Add MIXED type to FrameSerializerType enum
This commit is contained in:
@@ -18,10 +18,12 @@ class FrameSerializerType(Enum):
|
|||||||
Parameters:
|
Parameters:
|
||||||
BINARY: Binary serialization format for compact representation.
|
BINARY: Binary serialization format for compact representation.
|
||||||
TEXT: Text-based serialization format for human-readable output.
|
TEXT: Text-based serialization format for human-readable output.
|
||||||
|
MIXED: Mixed format supporting both binary and text messages (e.g., Vonage).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
BINARY = "binary"
|
BINARY = "binary"
|
||||||
TEXT = "text"
|
TEXT = "text"
|
||||||
|
MIXED = "mixed"
|
||||||
|
|
||||||
|
|
||||||
class FrameSerializer(ABC):
|
class FrameSerializer(ABC):
|
||||||
|
|||||||
Reference in New Issue
Block a user