class EchoChannel < ActionCable::Channel::Base def subscribed stream_from "global" end def ding(data) transmit(dong: data['message']) end def bulk(data) ActionCable.server.broadcast "global", wide: data['message'] end end