Is it possible to broadcast objects via Deepstream.io?

182 Views Asked by At

For an application i need to broadcast JavaScript objects to synchronizise an array of two (or more) devices, but im not sure if it's possible, and when yes how it is possible.

1

There are 1 best solutions below

1
On

Yes this is definitely possible, events work with objects, arrays and primitives

const client = deepstream('...')
client.event.emit('topic', { some: 'properties' })
client.event.emit('topic', [ 'an', 'array' ])
client.event.emit('topic', 'a primitive')

there's quite good documentation about it too. good luck https://deepstream.io/docs/client-js/client/