Tagged Questions
The notify tag has no wiki summary.
11
votes
4answers
5k views
Why does synchronized notifyAll result in a IllegalMonitorStateException?
Why does this test program result in a java.lang.IllegalMonitorStateException?
public class test {
static Integer foo = new Integer(1);
public static void main(String[] args) {
...
10
votes
1answer
1k views
WCF: How to detect client-side if the server disconnects me
I have a WCF self-hosted service with a net.tcp DuplexChannel. On the server I run the following to disconnect a client:
((ICommunicationObject)client.CallbackChannel).Close();
This works fine but ...
10
votes
5answers
33k views
How to use wait and notify in java?
I have 2 matrices and I need to multiply them and then print the results of each cell. As soon as one cell is ready I need to print it, but for example I need to print the [0][0] cell before cell ...
8
votes
3answers
126 views
Java wait()/join(): Why does this not deadlock?
Given the following Java code:
public class Test {
static private class MyThread extends Thread {
private boolean mustShutdown = false;
@Override
public synchronized ...
8
votes
1answer
348 views
IllegalMonitorStateException
What can cause that i get IllegalMonitorStateException in this code
synchronized(syncCount){
syncCount--;
syncCount.notify();
}
I'm little confused, since, as far as I know running thread ...
8
votes
4answers
919 views
Why do all Java Objects have wait() and notify() and does this cause a performance hit?
Every Java Object has the methods wait() and notify() (and additional variants). I have never used these and I suspect many others haven't. Why are these so fundamental that every object has to have ...
8
votes
5answers
3k views
Java executors: how to be notified, without blocking, when a task completes?
Say I have a queue full of tasks which I need to submit to an executor service. I want them processed one at a time. The simplest way I can think of is to:
Take a task from the queue
Submit it to ...
7
votes
5answers
2k views
Why are wait() and notify() declared in Java's Object class?
Why are the wait() and notify() methods declared in the Object class, rather than the Thread class?
4
votes
7answers
422 views
using Object as a mutex in java
Hello there good poeple, I need some help.
I'm writing a music player which streams music from the web. If I pres the play button before the music is done buffering I want it to wait.
I tried doing ...
4
votes
4answers
101 views
How can I display something during the execution of a SQL script on SQLServer?
For example. I have a database upgrade script for adding a column to a database table. It looks a little like this:
IF NOT Exists(SELECT * FROM SysColumns sc, SysObjects so
WHERE ...
3
votes
3answers
95 views
Wait() and Notify() concepts - Java Multithreading
class Q {
volatile boolean valueSet = false;
volatile int n;
synchronized int get () {
if ( !valueSet ) {
try {
wait();
} catch ( InterruptedException e ) {
...
3
votes
5answers
326 views
Java: How can a thread wait on multiple objects?
A thread can use Object.wait() to block until another thread calls notify() or notifyAll() on that object.
But what if a thread wants to wait until one of multiple objects is signaled? For example, ...
3
votes
3answers
447 views
How to use wait and notify protocol with multiple threads
Specifically, can somebody tell me what is wrong with this piece of code. It should start the threads, so should print "Entering thread.." 5 times and then wait until notifyAll() is called. But, it ...
3
votes
4answers
931 views
java: wait(), notify() and synchronized blocks
I learned that calling an Object's wait() method will release the object monitor, if present.
But I have some questions regarding calling notify() on this object by another thread:
(when) will the ...
3
votes
5answers
2k views
A simple scenario using wait() and notify() in java
Can I get a complete simple scenario i.e. tutorial that suggest how this should be used, specifically with a Queue?
3
votes
3answers
486 views
single instance and notify in system tray
I am working on the application (C# 2.0). I have implemented single instance in it. Everything is fine.
If i run the application again, it shows messagebox saying "instance is already running".
...
2
votes
4answers
50 views
Kind of a Rendez-Vous in Java which does not work
I have some troubles using wait() and notify(). I need to have a kind of rendez-vous.
Here is the thing, in a small piece of code:
class A {
private Rdv r;
public A(Rdv r) {
this.r ...
2
votes
3answers
37 views
ConcurrentLinkedQueue with wait() and notify()
I am not well-versed in Multi-Threading. I am trying to take screenshot repeatedly by one producer thread, which adds the BufferedImage object to ConcurrentLinkedQueue and a Consumer Thread will poll ...
2
votes
3answers
103 views
How to understand the wait and notify method in Java Thread?
I'm very confusing about these two descriptions:
"The wait method blocks the calling thread and gives up the monitor lock"
"The notify method unblocks one waiting thread but does not give up the ...
2
votes
2answers
127 views
Android : How to Refresh list upon item deletion in customized SimpleAdapter
May i know how to refresh the ListView item after i have remove a map list item in customized SimpleAdapter ?
I have successfully implement the delete list item with list.remove(position), but when ...
2
votes
3answers
110 views
A good small example to demonstrate wait() and notify() method in java
Can anybody please provide me a good small example demonstrate wait() and notify() functionality in java. I've tried with the below piece of code but it's not showing what i expected.
public class ...
2
votes
0answers
129 views
Notify data change in a cursor without using a ContentProvider
could i notify a cursor after a new record inserted in a table without using a contentProvider
i saw this question he said that he used the requery() method
and the first answer use a ...
2
votes
5answers
163 views
Is it safe to syncronize a block without using the wait keyword?
I have one thread populating a vector object with values, and one other thread that periodically fetches the values from it and clears it periodically.
I want that either thread accessing the vector ...
2
votes
2answers
344 views
how to notify java desktop clients about changes from server?
I would like to develop a desktop application with Java (I've got very basic knowledge of Java). It'll run on the client's computer and will pull information from the server hosted in the internet. I ...
2
votes
1answer
280 views
Wait and Notify
If the main thread quits before child finishes its work, and child tries to notify, what will happen?
Thanks
2
votes
3answers
461 views
Running a python script from crontab
I've got a python program which runs via crontab and that works perfectly. However, I decided to add the ability to notify me of what it's doing, and suddenly it's failing. It runs from the command ...
2
votes
1answer
284 views
new to multithreading- how to use wait() and notify() in java?
I'm trying to write a program with 2 classes, a controller and a class that does a lot of computation. The controller creates a couple instances of the other class, then tells them all to start their ...
2
votes
0answers
318 views
Use a service to monitor when other activites/applications start or end
Is it possible to make a service running in backgroud to be notified when an arbritary activity/application is started and ended by a user? I want to use it to log how often and for how long different ...
2
votes
2answers
532 views
Notify upon background jobs finishing running in bash
I am running some time-consuming executables with different parameters assigned in a loop as background jobs in parallel. Here is a toy example and its output:
bash-3.2$ set -o notify
bash-3.2$ for ...
1
vote
1answer
45 views
What if I am waiting on an object which is not Runnable?
Consider the following code :-
public class UsingWait1{
public static void main(String... aaa){
CalculateSeries r = new CalculateSeries();
Thread t = new Thread(r);
t.start();
...
1
vote
2answers
43 views
Get notified when some other application acquires wake lock
I am wondering if the following is possible in android. I want to have my application do a certain task whenever the phone get awoken. Whenever some other application acquires a wake lock to do it's ...
1
vote
1answer
91 views
facebook comments notification
I have added the html5 version of facebook comments to my webpage successfully. Now I'm trying to work out how to be notified of new comments as per the documentation. I added this code to the script ...
1
vote
2answers
66 views
Javascript: Get Notified when fragment is added to the DOM
What I want
I'm loading a fragment of HTML from server side with AJAX, and I'm appending it to the document, and I would like a way to get notified when the fragment is fully added into the dom.
I'm ...
1
vote
3answers
160 views
notifyDataSetChanged() on my adapter does not update the listview, why?
I have a activity that extends listactivity, extended in this class i have a class that extends baseadapter.
now in my listactivity i have this onCreate
/** Called when the activity is first ...
1
vote
1answer
61 views
How to notify Activity about the progress of a Service
I'm writing an Android app with 3 Activity()s: A, B and C; and one Service: S. The user can start the service using activity A. The service runs for a long time, in 7 steps. Each step takes a few ...
1
vote
3answers
84 views
Create an Object, pass the Object to another Object's constructor, call wait() on Object, then notify() in Java
I'm trying to handle multiple connections on the same port of my server. I'm doing this by instantiating an Object and passing it into the constructor for another class, which implements Runnable. ...
1
vote
2answers
46 views
How to know which thread is affected by notify() or notifyAll() - Java
Is there a way to know which Active Entity thread(s) is/are being affected by a notify() or notifyAll() which are called from inside of a Passive Entity Mutex.
1
vote
1answer
63 views
What is wrong with my Gmail notifier code?
Do you guys see any issues with this C# code? It gets email notifications from gmail and then prints to CMD how many unread mails are waiting:
Unread Mails: 10
Unread Mails: 10
and then sends how ...
1
vote
2answers
373 views
Groovy wait/notify
I have the following Groovy code:
abstract class Actor extends Script {
synchronized void proceed() {
this.notify()
}
synchronized void pause() {
wait()
}
}
class ...
1
vote
1answer
74 views
Notify existing customers of new apps
I am building a range of related products. People who have bought one will likely be interested in the others.
What is the best way to notify my existing customer base of new products as they ...
1
vote
1answer
757 views
Android - notifyDataSetChanged() not working on custom adapter?
I am trying to call notifyDataSetChanged() on my custom adapter but it seems not to be working.
Here is my activity :-
public class ThreadData extends ListActivity
{
private static final Uri ...
1
vote
2answers
114 views
call notify balloon message in windows 7 from cmd?
i need call notify balloon message in windows 7 from cmd (command line) with special text i searched Google and find shell32
1
vote
3answers
222 views
Java Monitors: How to know if wait(long timeout) ended by timeout or by Notify()?
First, this is a near duplicate of:
How to differentiate when wait(long timeout) exit for notify or timeout?
But it is a new follow-on question.
Having this wait declaration:
public final native ...
1
vote
1answer
158 views
Twisted: notify client when server-side process completes
I'm using Twisted to write a web server. One of the tasks that this server performs takes a long time (~5 minutes). I would like to be able to efficiently notify the client that this task has ...
1
vote
4answers
349 views
How can I see in SMS app my messages sent from within my app?
I have just created a cool app that work with SMS.
You have just to send some SMS to your phone and it reply with location and some handy stuff. Usefull for my frieds, I just told them send me a SMS ...
1
vote
2answers
94 views
How can I have a thread tell the method that started it when it has completed doing its setup?
I have a method that starts a thread, and I want to have the method block until the thread finishes its setup stage, or else face a race condition.
I know I want to use wait notify, but I don't know ...
1
vote
1answer
657 views
Update item in BindableCollection with notify ICollectionView
Hi I bind collection from Caliburn Micro on ListBox control in view. Here is it.
public BindableCollection<UserInfo> Friends
{
get { return _friends; }
set
{
_friends = ...
1
vote
0answers
184 views
How to be notified about entering suspend mode?
I'd like my application to be notified when system is about to suspend or sleep (before).
No matter to acquire a wake lock: i dont want to inhibit the procedure but only to be notified about it.
Thank ...
1
vote
4answers
694 views
send update app to AppStore and notify users
I have a question. I send App to AppStore. When I need send a update for the App, How notify the users that the App have new update? I put the key version with new version number. I need set other key ...
1
vote
1answer
5k views
ListView adapter data change without ListView being notified
I've written a ListActivity that has a custom list adapter. The list is being updated from a ContentProvider when onCreate is run. I also have a service that gets started when I run the app and it ...