Ir al contenido
Español

ObjectStoragePluginHandles

Esta página aún no está disponible en tu idioma.

Defined in: src/persistence/object-storage/ObjectStoragePlugin.ts:48

readonly backend: ObjectStorageBackend

Defined in: src/persistence/object-storage/ObjectStoragePlugin.ts:50

The shared backend — both stores write through this.


readonly durableStateStore: ObjectStorageDurableStateStore

Defined in: src/persistence/object-storage/ObjectStoragePlugin.ts:57

The DurableState store instance. PersistenceExtension doesn’t carry a DurableState registry today, so callers that want DurableState pass this directly into DurableStateActor’s options.

close(): Promise<void>

Defined in: src/persistence/object-storage/ObjectStoragePlugin.ts:63

Close the shared backend exactly once. Both stores are built with ownsBackend: false, so neither closes the backend on its own close() — the caller invokes this on shutdown instead (idempotent).

Promise<void>