state
changes on the backend, your React frontend updates automatically. Multiplayer out-of-the-box, no polling necessary!// Lookup durable types by ID.const account = useAccount({ id: myAccountId });// Use generated React hooks to get updates from// the backend _reactively_.1const { response } = account.useBalance();...
class AccountServicer extends Account.Servicer {// Mutators update `state` directly, which gets durably// persisted when the function returns.async deposit(context, state, request) {2state.balance += request.amount;return {};}async balance(context, state, request) {3return state.balance;}...
Account.deposit
)...const payee = useAccount({ id: payeeAccountId });// Will retry safely for retryable errors,// e.g., network disconnects.1await payee.deposit({amount,});...
class AccountServicer extends Account.Servicer {2async deposit(context, state, request) {state.balance += request.amount;return {};}...
const bank = useBank({ id: "Rebank" });// Call any mutator on the backend.1await bank.transfer({fromAccountId,toAccountId,amount,});
class BankServicer extends Bank.Servicer {2async transfer(context, state, request) {const from = Account.ref(request.fromAccountId);const to = Account.ref(request.toAccountId);3await from.withdraw(context, { amount: request.amount });await to.deposit(context, { amount: request.amount });4return {};}...
state
changes on the backend, your React frontend updates automatically. Multiplayer out-of-the-box, no polling necessary!// Lookup durable types by ID.const account = useAccount({ id: myAccountId });// Use generated React hooks to get updates from// the backend _reactively_.1const { response } = account.useBalance();...
class AccountServicer extends Account.Servicer {// Mutators update `state` directly, which gets durably// persisted when the function returns.async deposit(context, state, request) {2state.balance += request.amount;return {};}async balance(context, state, request) {3return state.balance;}...
Account.deposit
)...async wireTransfer(context: WorkflowContext, request) {1await until("Human in the loop", context, async () => {return await checkSignOff(request.signOffDetails);});const account = Account.ref(request.fromAccountId);await account.idempotently().withdraw(context, { amount: request.amount });2await atMostOnce("Remit to provider”, context, async () => {return http.post(REMITTANCE_PROVIDER_URL, {toAccountDetails: request.toAccountDetails});});await emailer.Message.idempotently().send(context, {to: request.transferCompleteEmail});return {};}
until
a condition is met.atMostOnce
(or, not shown, atLeastOnce
).SortedMap
from Reboot's standard library.import { SortedMap } from "@reboot-dev/reboot-std/collections/sorted_map.js";...const map = SortedMap.ref(someId);...await map.insert(context, { entries: { "someKey": someValue } });...await map.get(context, { key: "someKey" });