For the following example:
public Car getCar(int id){
Car result= findCarInCache(id);
if (result==null){
// POINT A
return createCarWithId(id);
} else {
return result;
}
}
public Car findCarInCache(int id){
// Do something for find a car with this id in the cache
}
public void addToCache(Car car){
// Add the car to the cache
}
public Car createCarWithId(int id){
Thread.sleep(10000);
Car result= new Car(id);
addToCache(Car);
return result;
}
The problem comes when two Threads call at the same time getCar(2) for example. Then both threads reach the POINT A, and two instances of the Car#2 are generated. How can I make the second thread to wait at the POINT A, until the first thread finish the creation and then return the same object in both calls? (I'm doing this in Android)
Thanks