That would be with `transaction()/transactionSync()`
That would be with
transaction()/transactionSync()ack it later.transactionSync() existed but this may help: https://medium.com/cloudflare-durable-objects-design-patterns/maintaining-consistent-state-56f5bb22dba9getPlatformProxy)script_name in the binding to support local dev:If you are not using RPC with your Durable Object, you can run a separate Wrangler dev session alongside your framework development server.
Otherwise, you can build your application and run both Workers in the same Wrangler dev session.
agents Schedule API to DOs? It's one of the more useful parts of agents that I'd love to have as part of the default implementation (or if lambro or Larry wanna add it into their DO packages getPlatformProxywrangler_external_do.jsonc file@cloudflare/actors library already has alarm scheduling helpers: https://github.com/cloudflare/actors/blob/9ec15ae82986adca5763ec517a9eea8d0bbe6ef7/examples/durable-objects/src/index.ts#L21DurableObject, no need to extend the Actor class.DurableObjectID, using DurableObjectStorageGroups (can't remember exact name of that, but it's something like that) to be able to see which instances are using storageAccountDurableObjectsSqlStorageGroups for SQL DOs and AccountDurableObjectsStorageGroups for KV DOstransactionSync()fetch call inside transactionSync it should deadlock, since it needs the response to complete the transaction, and the request needs to wait for the Output gate to be opentransaction() callbacktransaction() and it throws?transactionSync myself either. It should work with transaction though.runDurableObjectAlarm() which will trigger your handler but not simulate time passing. I have also released https://lumenize.com/docs/testing/alarm-simulation, which will speed up time 100x and simulate alarms running. It works great so long as you avoid a thundering herd, which is quite easy to do at 100x. You can slow it down to 1x though.ctx.storage.deleteAll() in a hibernated or non-hibernated Durable Object gonna also disconnect all clients attached to it? Or is just cleaning the storage (kv, sqlite)?