Const
Optional
baseDir: stringReadonly
baseDir: stringReadonly
entityName: EntityNameImplements the async iterator protocol for iterating over entities.
Delegates to the values
method for iteration, enabling for await
loops over entities.
An async iterator yielding entities.
Filters entities based on a predicate function, yielding only matching entities.
Useful for selective retrieval (e.g., finding online SessionId
s in a SwarmName
).
A function to test each entity, returning true
to include it.
An async generator yielding filtered entities in sorted order.
Retrieves the number of entities stored in the directory.
Counts only files with a .json
extension, useful for monitoring storage usage (e.g., active sessions).
A promise resolving to the count of stored entities.
Checks if an entity exists in storage by its ID.
Efficiently verifies presence without reading the full entity (e.g., checking if a SessionId
has memory).
The identifier of the entity to check (string or number), unique within its storage context.
A promise resolving to true
if the entity exists, false
otherwise.
Iterates over all entity IDs in storage, sorted numerically.
Yields IDs in ascending order, useful for key enumeration (e.g., listing SessionId
s in a SwarmName
).
An async generator yielding each entity ID as a string or number.
Removes and returns the last entity from the persistent list.
Useful for dequeuing items or retrieving recent entries (e.g., latest event in a SwarmName
log).
A promise resolving to the removed entity or null
if the list is empty.
Adds an entity to the end of the persistent list with a new unique numeric key.
Useful for appending items like messages or events in swarm operations (e.g., within a SwarmName
).
The entity to append to the list (e.g., a state update).
A promise that resolves when the entity is written to storage.
Reads an entity from storage by its ID, parsing it from a JSON file.
Core method for retrieving persisted data (e.g., alive status for a SessionId
in a SwarmName
context).
The identifier of the entity to read (string or number), unique within its storage context.
A promise resolving to the parsed entity data.
Removes all entities from storage under this entity name.
Deletes all .json
files in the directory, useful for resetting persistence (e.g., clearing a SwarmName
’s data).
A promise that resolves when all entities are removed.
Removes an entity from storage by its ID.
Deletes the corresponding JSON file, used for cleanup (e.g., removing a SessionId
’s memory).
The identifier of the entity to remove (string or number), unique within its storage context.
A promise that resolves when the entity is deleted.
Takes a limited number of entities, optionally filtered by a predicate.
Stops yielding after reaching the specified total, useful for pagination (e.g., sampling SessionId
s).
The maximum number of entities to yield.
Optional
predicate: (value: T) => booleanOptional function to filter entities before counting.
An async generator yielding up to total
entities in sorted order.
Iterates over all entities in storage, sorted numerically by ID.
Yields entities in ascending order, useful for batch processing (e.g., listing all SessionId
s in a SwarmName
).
An async generator yielding each entity in sorted order.
Initializes the storage directory, creating it if it doesn’t exist, and validates existing entities.
Removes invalid JSON files during initialization to ensure data integrity (e.g., for SwarmName
-based alive status).
Indicates if this is the initial setup; reserved for future caching or optimization logic.
A promise that resolves when initialization is complete.
Writes an entity to storage with the specified ID, serializing it to JSON.
Uses atomic file writing via writeFileAtomic
to ensure data integrity (e.g., persisting AgentName
for a SwarmName
).
The identifier for the entity (string or number), unique within its storage context.
The entity data to persist (e.g., { agentName: "agent1" }
).
A promise that resolves when the write operation is complete.
Extends
PersistBase
to provide a persistent list structure with push/pop operations. Manages entities with numeric keys for ordered access, suitable for queues or logs in the swarm system.