Hey all,

Juggernaut is a plugin that provides realtime connection between your
servers and client browsers. You can literally push data to clients
using your web application.

The instructions say to instantiate the Juggernaut object and
subscribe to the channel:

  jug = new Juggernaut({ "host": "dev.abcdef.com", "port": 1740 });

jug.subscribe(get_info(report_id), function(data) {


});
function get_info(report_id){
  return '/reports/' + report_id + '/new';
}


Now the instructions say in order to send the data to the client, use
Juggernaut.publish on the ruby end.

However, I currently look at application and the publish method is not
being used anywhere on the rails side. Yet it apparently is sending
data to the client. Is there another way to send data to the client
that I am overlooking?

thanks for response

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to