Delete event not emitted

75 Views Asked by At

I'm using a basic Deepstream setup with RethinkDB, but for some reason the delete event is never emitted when a record is deleted?

var x = window.deepstream.record.getRecord('test1');
x.subscribe(function(){
    console.log('was deleted')
})
window.setTimeout(function(){
    console.log('deleting');
    x.delete();
},2000);

The "something happened" text never ouputs... Is this expected behavior?

1

There are 1 best solutions below

0
On

It looks like subscribe does not actually listen for the delete event, I needed to specifically do:

x.on('delete', function(){
    console.log('was deleted')
})