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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:20:25+00:00 2026-05-27T14:20:25+00:00

I am circling through LinkedBlockingQueue millions of Strings. The reading thread should end its

  • 0

I am circling through LinkedBlockingQueue millions of Strings.
The reading thread should end its execution when there are no more items in source.

I thought about putting a dummy value like "SHUTDOWN" in LinkedBlockingQueue.

The reader does this:

while ((data = (String)MyLinkedBlockingQueue.take()).equals("SHUTDOWN") == false) {
    //read and live 
}

Is it efficient to execute equals on every string? If not what can I use instead?

  • 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-27T14:20:26+00:00Added an answer on May 27, 2026 at 2:20 pm

    You are on the right track. This is the standard idiom for finishing processing of a BlockingQueue, it’s called the “poison pill”. i usually implement it using a special private static final instance so you can do object equality and don’t risk overlapping with a real value. e.g.:

    private static final String SHUTDOWN = new String("SHUTDOWN"); // use new String() so you don't get an interned value
    
    public void readQueue() {
      while ((data = (String)MyLinkedBlockingQueue.take()) != SHUTDOWN) {
          //read and live 
      }
    }
    
    public void shutdownQueue() {
      MyLinkedBlockingQueue.put(SHUTDOWN);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a 3D game in XNA using Ox Engine. There is very little
Ok so I'm circling around this site and people are like OMG, don't use
I'm having a problem with encoding from a wordpress feed that I just can't
So I have a circle of planes which get constructed as: plane.x = Math.cos(angle)
The endless adapter that I've used in my code, doesn't stop expecting data even
I am working on an app that has a rotating image (the user tapps
Optimizing a game we're developing, we're running into the phase where every CPU cycle
I have followed all the instructions here: http://www.tonyspencer.com/2003/10/22/curl-with-php-and-apache-on-windows/ to install & config apache get
From http://msdn.microsoft.com/en-us/library/aa287786(v=vs.71).aspx public string Name { get { return name; } set { name
I have an application with several (8) different Views in a UIScrollView. They are

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.