Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 330 Bytes

examples.md

File metadata and controls

17 lines (12 loc) · 330 Bytes

Examples

Usage patterns

Send a full document update to a client

doc = Y::Doc.new
text = doc.get_text("about")
text << "My name is, my name is, my name is … Slim Shady"

zero = Y::Doc.new
update = doc.diff(zero.state)

# transfer could be anything, ActionCable broadcast, HTTP response, …
transfer update