Skip to content
bind://realtime — how it works

Every app is collaborative. Automatically.

Real-time and offline are the two features every backend tells you to bolt on later — and later means a sync vendor and a rewrite. Here they are properties of the database: writes land locally first, every client is kept current, and the transaction manager reconciles on reconnect.

Users and devices exchanging data through the database in real time
how we deliver: works offline

Your app works on a train.

Watch a phone add items, lose the network, keep working, and sync the queue when it comes back.

09:41● online
Event checklist
    Event checklistanother client, same container
    ItemUpdated (UTC)
    how we deliver: real-time without a sync layer

    Four things the database does so that you don't.

    SDK cache

    Local-first writes

    The SDK caches data on the device and pumps it to and from the database in real time.

    onRemoteObjectAdded…

    Data-change listeners

    Listeners fire when anyone else adds, moves, renames or removes an object.

    share · publish · subscribe

    Selective exchange

    Share an item with identities or groups, or publish a view of it and let others subscribe.

    transaction manager

    Coordination on reconnect

    Cached changes sync when the network returns; XML objects merge as deltas across identities.

    how we deliver: one backend for every platform

    A Linux daemon, an Android phone and a browser tab, sharing live data.

    The same data model in C++, Java, Android, Swift and Web, with no API tier between them. Watch the demo

    Linux daemon

    C++ SDK

    Android phone

    Java SDK

    Browser tab

    Web UI SDK

    stated precisely

    What ships today, and what is alpha.

    shipping

    Real-time propagation and offline caching

    Local-first cache, connected clients kept current, listeners, sharing, and sync on reconnect.

    alpha

    Simultaneous editing of one document

    The Real-Time SDK that merges deltas from several identities in one XML document is in alpha — not for commercial deployments yet.

    Collaborative by default. Sovereign by construction.