NullConversationManager
Defined in: src/conversation-manager/null-conversation-manager.ts:16
A no-op conversation manager that does not modify the conversation history. Implements HookProvider but registers zero hooks.
Implements
Section titled “Implements”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new NullConversationManager(): NullConversationManager;Returns
Section titled “Returns”NullConversationManager
Methods
Section titled “Methods”registerCallbacks()
Section titled “registerCallbacks()”registerCallbacks(_registry): void;Defined in: src/conversation-manager/null-conversation-manager.ts:23
Registers callbacks with the hook registry. This implementation registers no hooks, providing a complete no-op behavior.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
_registry | HookRegistry | The hook registry to register callbacks with (unused) |
Returns
Section titled “Returns”void