Giter Site home page Giter Site logo

jv-multithreading-blocking-queue's Introduction

Blocking queue

Write an implementation of a blocking queue where you have some fixed size capacity of elements.

The blocking queue is the queue that implies the thread which wants to put a new element to wait if the queue is already full. The thread which wants to take an element should also wait if the queue is empty and there is no available element.

Implement the methods in BlockingQueue class using wait() and notify() methods. The first thing is to think about the conditions under which you want to wait in your methods. You can check your solution running main() method.

Note that you need to put the conditions that you are checking in a while loop, rather than in an if statement, due to a problem known as spurious wake-ups. A waiting thread can sometimes be re-activated without notify() being called. Putting the check in a while loop will ensure that if a spurious wake-up occurs, the condition will be re-checked, and the thread will call wait() again.

jv-multithreading-blocking-queue's People

Contributors

kseniiamakarova avatar resci avatar alexrozv avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.