Interface IPersistMemoryData<T>

Defines the structure for memory data persistence in the swarm system. Wraps arbitrary memory data for storage, used by PersistMemoryUtils.

interface IPersistMemoryData<T = unknown> {
    data: T;
}

Type Parameters

  • T = unknown

    The type of the memory data, defaults to unknown. IPersistMemoryData

Properties

Properties

data: T

The memory data to persist (e.g., session context or temporary state)