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 6695223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:11:44+00:00 2026-05-26T06:11:44+00:00

How can I better write the following class? For example is there a nice

  • 0

How can I better write the following class? For example is there a nice way to slip having the two flags is_alive and is_finished?

Monitor(threading.Thread):
    def run(self):
        resource = Resource("com1")

        self.alive = True
        self.is_finished = False
        try:
            while self.alive:
                pass # use resource
        finally:
            resource.close()
            self.is_finished = True    

    def stop(self):
        self.alive = False
        while not self.is_finished:
            time.sleep(0.1)
  • 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-26T06:11:45+00:00Added an answer on May 26, 2026 at 6:11 am

    That’s pretty much it. However, you don’t need the is_finished, because you can use the join() method:

    Monitor(threading.Thread):
        def run(self):
            resource = Resource("com1")
    
            self.alive = True
            try:
                while self.alive:
                    pass # use resource
            finally:
                resource.close()
    
        def stop(self):
            self.alive = False
            self.join()
    

    If you do need to find if a thread is running, you can call mythread.is_alive() – you don’t need to set this yourself.

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

Sidebar

Related Questions

can anyone think of a better way to do this? [AcceptVerbs(HttpVerbs.Post)] public ActionResult SaveAction()
My discount class has a sales_period. I want to write a method which can
I'm looking for a more idiomatic way, if possible, to write the following clojure
I have a .exe app which I want to understand better - I can
After reading E-myth Revisited, I realize that I can do a better job at
Sorry if the title is poorly descriptive, but I can't do better right now
Can you do a better code? I need to check/uncheck all childs according to
Can anyone tell me how is ObjectIDGenerator better (worse?) then using HashSet when traversing
Can Any one suggest me which is the better approach to work with NSInputStream.
Can anyone suggest which of the Redmine or Tracd would be a better option

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.