y-protocols

1.0.6 • Public • Published

Yjs Protocols

Binary encoding protocols for syncing, awareness, and history information

This API is unstable and subject to change.

API

Awareness Protocol

import * as awarenessProtocol from 'y-protocols/awareness.js'

The Awareness protocol implements a simple network agnostic algorithm that manages user status (who is online?) and propagate awareness information like cursor location, username, or email address. Each client can update its own local state and listen to state changes of remote clients.

Each client has an awareness state. Remote awareness are stored in a Map that maps from remote client id to remote awareness state. An awareness state is an increasing clock attached to a schemaless json object.

Whenever the client changes its local state, it increases the clock and propagates its own awareness state to all peers. When a client receives a remote awareness state, and overwrites the clients state if the received state is newer than the local awareness state for that client. If the state is null, the client is marked as offline. If a client doesn't receive updates from a remote peer for 30 seconds, it marks the remote client as offline. Hence each client must broadcast its own awareness state in a regular interval to make sure that remote clients don't mark it as offline.

awarenessProtocol.Awareness Class

const awareness = new awarenessProtocol.Awareness()
clientID:number
A unique identifier that identifies this client.
getLocalState():Object<string,any>|null
Get the local awareness state.
setLocalState(Object<string,any>|null)
Set/Update the local awareness state. Set `null` to mark the local client as offline.
setLocalStateField(string, any)
Only update a single field on the local awareness object. Does not do anything if the local state is not set.
getStates():Map<number,Object<string,any>>
Get all client awareness states (remote and local). Maps from clientID to awareness state.
on('change', ({ added: Array<number>, updated: Array<number> removed: Array<number> }, [transactionOrigin:any]) => ..)
Listen to remote and local state changes on the awareness instance.
on('update', ({ added: Array<number>, updated: Array<number> removed: Array<number> }, [transactionOrigin:any]) => ..)
Listen to remote and local awareness changes on the awareness instance. This event is called even when the awarenes state does not change.

License

The MIT License © Kevin Jahns

Readme

Keywords

Package Sidebar

Install

npm i y-protocols

Weekly Downloads

268,649

Version

1.0.6

License

MIT

Unpacked Size

1.07 MB

Total Files

25

Last publish

Collaborators

  • dmonad