Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6618229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:48:12+00:00 2026-05-25T20:48:12+00:00

I’m working on a project in Tornado that relies heavily on the asynchronous features

  • 0

I’m working on a project in Tornado that relies heavily on the asynchronous features of the library. By following the chat demo, I’ve managed to get long-polling working with my application, however I seem to have run into a problem with the way it all works.

Basically what I want to do is be able to call a function on the UpdateManager class and have it finish the asynchronous request for any callbacks in the waiting list. Here’s some code to explain what I mean:

update.py:

class UpdateManager(object):
  waiters = []
  attrs = []
  other_attrs = []

  def set_attr(self, attr):
    self.attrs.append(attr)

  def set_other_attr(self, attr):
    self.other_attrs.append(attr)

  def add_callback(self, cb):
    self.waiters.append(cb)

  def send(self):
    for cb in self.waiters:
      cb(self.attrs, self.other_attrs)

class LongPoll(tornado.web.RequestHandler, UpdateManager):
  @tornado.web.asynchronous 
  def get(self):
    self.add_callback(self.finish_request)

  def finish_request(self, attrs, other_attrs):
    # Render some JSON to give the client, etc...

class SetSomething(tornado.web.RequestHandler):
  def post(self):
    # Handle the stuff...
    self.add_attr(some_attr)

(There’s more code implementing the URL handlers/server and such, however I don’t believe that’s necessary for this question)

So what I want to do is make it so I can call UpdateManager.send from another place in my application and still have it send the data to the waiting clients. The problem is that when you try to do this:

from update import UpdateManager
UpdateManager.send()

it only gets the UpdateManager class, not the instance of it that is holding user callbacks. So my question is: is there any way to create a persistent object with Tornado that will allow me to share a single instance of UpdateManager throughout my application?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:48:13+00:00Added an answer on May 25, 2026 at 8:48 pm

    Don’t use instance methods – use class methods (after all, you’re already using class attributes, you just might not realize it). That way, you don’t have to instantiate the object, and can instead just call the methods of the class itself, which acts as a singleton:

    class UpdateManager(object):
      waiters = []
      attrs = []
      other_attrs = []
    
      @classmethod
      def set_attr(cls, attr):
        cls.attrs.append(attr)
    
      @classmethod
      def set_other_attr(cls, attr):
        cls.other_attrs.append(attr)
    
      @classmethod
      def add_callback(cls, cb):
        cls.waiters.append(cb)
    
      @classmethod
      def send(cls):
        for cb in cls.waiters:
          cb(cls.attrs, cls.other_attrs)
    

    This will make…

    from update import UpdateManager
    UpdateManager.send()
    

    work as you desire it to.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a
I need a function that will clean a strings' special characters. I do NOT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.