Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. var Foo = function()
  2. {
  3. var _cometd;
  4. var _counter;
  5.  
  6. this.registered = function(name, cometd)
  7. {
  8. // Store the cometd object reference
  9. _cometd = cometd;
  10. };
  11.  
  12. this.outgoing(message)
  13. {
  14. console.info("log me whenhever sth sent with cometd.publish");
  15. };
  16. };
  17.  
  18.  
  19. cometd.registerExtension('foo', new Foo());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement