In a classic consumer\producer threads senario and i have to use a vector for the queue. Since I need one thread to wait to the other until there's an element in the vector, i tried the following method:
public synchronized QueueLine getCustomer(int index)
{
while (Customers.isEmpty())
{
try
{
wait();
}
catch (InterruptedException e) {}
}
return Customers.elementAt(index);
}
while the other thread adds to the "customers" vector and than use notify. i know i'm doing something worng since once the notify() doesn't effects the other thread.