Slide 14
Slide 14 text
app/assets/javascripts/channels/rooms.js
App.rooms = App.cable.subscriptions.create("RoomsChannel", {
connected: function() {
// Called when the subscription is ready for use on the server
},
disconnected: function() {
// Called when the subscription has been terminated by the server
},
received: function(data) {
// Called when there's incoming data on the websocket for this channel
},
send_message: function() {
return this.perform('send_message');
}
});