The notify tag has no wiki summary.
2
votes
1answer
24 views
How to use Y.Notify.Message?
I have a problem with http://yuilibrary.com/gallery/show/notify
Unfortunately I'm using the older version of YUI (3.4.0) so it's even harder to search for the solutions. I can't change it so I have ...
1
vote
5answers
73 views
How to solve starvation with notify and notifyall?
How to solve starvation with notify and notifyall?
If we have 4 threads, waiting to acquire a lock on same obj,and the current thread calls notify()
The JVM will select any one thread. Is it ...
0
votes
2answers
34 views
is this right for wait() and notify() and how to fix
I am writing a simple android application to demonstrate wait() and notify() methods. The application contain 1 button and 1 textView, the textView will show a timer and button will show a dialog ...
0
votes
1answer
24 views
notify_url not working in new paypal
I have registered to paypal on live on https://www.paypal.com. Not verified for live.
I can login to https://developer.paypal.com with above login detail.
Here I go for sandbox accounts, I have ...
-2
votes
1answer
40 views
Thread wait sleep and notify [duplicate]
i'm creating a simple timer,i have some basic knowledge about thread.
i can stop the currently sunning thread by wait but can't able to notify it shows"illegalmonitorstateexception".
'import ...
0
votes
3answers
28 views
What does an asynchronous AJAX call return?
I am trying to create a test case to monitor progress of multiple parallel asynchronous server tasks. I have the code sort-of working, but there are several pieces I don't understand. First, what does ...
1
vote
3answers
88 views
Java multithreading with wait and notify
I have this piece of code
public MultiThreadedSum(ArrayBuffer ArrayBufferInst)
{
this.ArrayBufferInst = ArrayBufferInst;
Sum = 0;
Flag = false;
StopFlag = false;
}
public ...
0
votes
1answer
36 views
build wait()/notify() mechanism only with synchronized blocks
It is possible to build wait/notify mechanism only with syncronized blocks in Java? It means to create this mechanism with out wait()/notify() methods but using syncronized blocks, static fields, ...
1
vote
2answers
64 views
WPF Notify chain implementation
Here's the model:
public class Customer
{
string Name;
public ObservableCollection<Order> orders;
}
public class Order
{
int Id;
public ...
0
votes
0answers
26 views
Is there any Windows Message for detecting network cable is plugged or unplugged?
I made some MFC program using multiple Network Interface Cables.
This program show current usable NICs.
I just want how i can get notify when the network cable is plugged or unplugged.
It must be ...
1
vote
1answer
54 views
wait() and notify() in a thread android
Im writing an educational mathematics game were you can choose many operations at the same time, now im trying to generate 5 questions, however it runs all the five questions soo fast that i cant ...
0
votes
1answer
26 views
Postgres SQL: Best way to check for new data in a database I don't control
For an application I am writing, I need to be able to identify when new data is inserted into several tables of a database.
The problem is two fold, this data will be been inserted many times per ...
0
votes
0answers
33 views
How to combine notifications and GTK tray object properly in Python?
I'm writing a small python-tray-app which gets some data from a server every n seconds and pops up an notification when new data received..
What I can't figure out is why the notification takes over ...
0
votes
1answer
98 views
Don't know how use wait() and notify() in Java [duplicate]
I want to make something inside a thread that return what he did as string, and I'd like to wait for that string to do other thins. I've been reading about wait() and notify() but I dint get it. Can ...
0
votes
0answers
14 views
Facebook app, getting notified when user posts links on wall
Is there way to be notified by some callback to my app or so, when user do public post on their wall?
0
votes
1answer
33 views
Java: IllegalMonitorStateException on notify()
I am trying to call wait() function on the "slp" object, then after 1000 mills wake it up, but instead of message "Finished ..." I get an "IllegalMonitorStateException" error, after calling notify()
...
0
votes
1answer
59 views
What is the good solution for calling notifyAll?
I have a litle question about wait() and notifyAll() methods.
The code is simulating the 'Race' of two threads.
Let`s look at the code - the problem is that notifyAll() method do nothing with ...
0
votes
1answer
65 views
Set notify url to paypal payment in my android apps
Normally on websites, we can set a notify URL to check payment with paypal server. However how do we set it in an app? I am super new to paypal app payment.
I am using MEP.PayPal
@Override
protected ...
0
votes
4answers
112 views
put the current thread to sleep while waiting for another thread
At some point in my application, I want to put my main thread (ie., the currently executing thread) to sleep for some time or until the background has finished (and wakes it up), whichever comes ...
0
votes
6answers
118 views
Java: How can the wait() and notify() methods be called on Objects that are not threads?
Using Java:
How can the wait() and notify() methods be called on Objects that are not Threads? That doesn't really make sense, does it?
Surely, it must make sense, however, because the two methods ...
-1
votes
1answer
46 views
Why does my notify() not work?
None of my notifyAll() methods appear to be working.
Lucy is suppose to wait until Bob arrives and then release.
Bob is suppose to wait for acknowledgement Lucy and then release.
Neither of these ...
0
votes
1answer
37 views
Why is my release() method not waking my instance?
I've written an example program to demonstrate my problem.
There's a bartender thread and three customer threads.
They run at the same time once created.
The bartender is suppose to serve each ...
-3
votes
1answer
203 views
Java synchronized: wait() notify() [closed]
I want to make a java program with three threads: first and second print numbers from 0 to 99 by turns. Third gets control only when number multiply 10 (10, 20, 30 ..) and prints smth.
Im going to ...
0
votes
5answers
117 views
put the current thread to sleep and let others wake it
I have the follow method foo which takes an Observer and puts the current thread to sleep until the Observer wakes it up.
For some reason, I keep getting java.lang.IllegalMonitorStateException ...
0
votes
2answers
35 views
Order of waits and notify
Quick question I hope. If I call notify in an object in Java, is it guaranteed not to wake up any thread which waits (strictly) after I called notify. Or in other words, does notify only wake up ...
2
votes
2answers
82 views
Notify followed by another notify [duplicate]
What happens if you notify a lock, and immediately notify that lock again? Assume there are 2 or more threads waiting on that lock. Is it guaranteed that two threads are woken up? Or is it possible ...
1
vote
1answer
85 views
The code works with notifyAll, but doesn't with notify
I'm trying to create a simple "Ping-Pong" program with two threads (the Pong thread prints his message only after the Ping thread).
The question is why the following code gets stuck all the time, but ...
1
vote
3answers
53 views
Monitors and synchronized blocks in Java (it appears two threads own a monitor at the same time)
I'm trying to understand the synchronized() blocks in the program I wrote at the end of this post.
There are two threads (o and k) that use a shared lock object as a monitor for wait/notify.
o ...
0
votes
3answers
408 views
Issue with Notification Manager on android
I'm trying to notify using a button,but both Notification,setLatestEventInfo was stricken on Eclipse.
Two errors:
1.The constructor Notification(int, CharSequence, long) is deprecated Notification ...
0
votes
1answer
115 views
How to fire NOTIFICATION event in front end when table data gets changed
I am trying to make use of the Notification event given by Npgsql in vb.net. I partially got an idea about this mechanism, what i learned was, when ever a particular table's data has got changed, its ...
0
votes
1answer
63 views
how do I use wait notify to stop pause a method while waiting on a button to be pressed in another class
So using a GUI in java, I am trying to allow the user to press a transfer button which will initiate a method. This method will open up a separate GUI which will ask the user to enter information and ...
0
votes
3answers
66 views
Synchronized Threads in 1 Class
I have been searching for a way to use multiple threads and synchronization successfully. I've tried using wait() and notify(), but my threads still don't synchronize.
I have a bigger project, but in ...
0
votes
2answers
331 views
how can an AsyncTask wait for another without deadLock
I'm trying to implement 2 Async Tasks where one should wait for the other to finish.
I make a test case for it, that looks like this:
public class MainActivity extends Activity{
public static ...
0
votes
3answers
80 views
Method wait() and notifyAll() is not static
public synchronized static int get() {
while(cheia()==false){
try{
wait();
}
catch(InterruptedException e){
}
}
if (fila[inicio] != 0) {
...
0
votes
2answers
111 views
Thread, Wait, Notify, Sleep in Java
I am developing/developed a desktop application, where the button has actionlistener and to do lot of background task, I didnt use the thread, wait, notify or sleep before. I am just confused which ...
-2
votes
1answer
91 views
Automatic email notification to let existing users that their friends have also joined website [closed]
I want to create an automatic email notification system to notify my existing users every time his/her facebook friend registers/joins my website. I see a lot of these type of email notifications from ...
0
votes
1answer
81 views
Java object notify parent class
I am developing an augmented-reality app in Android. I have one class which called AugmentedView, extends view and it is responsible to draw the markers. In the onDraw method when it detects ...
0
votes
1answer
120 views
Show a tooltip on the Close (X) button on the form
I have a form, wherein I prohibit the user from closing it when the user clicks the Close (X) button. Is it possible to show a tooltip on the Close (X) button whenever it is clicked? I want to do it ...
2
votes
5answers
334 views
Difference between notify() and notifyAll()
I know that similar questions have been discussed in this site, but I have not still got further by their aid considering a specific example. I can grasp the difference of notify() and notifyAll() ...
0
votes
2answers
430 views
Joomla K2 item facebook comment notify author email
OK, so this a bit tricky, but there has to be some way to do this with facebooks FB.event?
The setup and problem.
Every K2 item (page) has a comment box.
Need to notify AUTHOR of said page when ...
1
vote
2answers
111 views
Is it required to use thread wait() and notify() inside a synchronized block?
In Java, is it required to use thread wait() and notify() within a synchronized block?
0
votes
1answer
172 views
Digital Clock with multithreading with only sleep, wait and notify
could you please check the below code, which is digital clock without util.concurrent package, Calendar by using the sleep, notify, wait. the code is executing correctly please suggest any better way. ...
0
votes
1answer
92 views
How to notify an activity when GlobalVariables are changed
I have an android application that is connected to the computer via USB cable. I use a TCPServer Class to send messages and listen. For example:
When I send a message like: request:x
I get the ...
2
votes
1answer
95 views
Calling notify() on an Object where no other threads are waiting on the same Object cost
What is the cost associated with calling notify() on an Object on which no other Objects have called wait() in Java?
The reason I am interested in this is because I have a worker thread that has a ...
0
votes
3answers
424 views
asp.net calling javascript from Code Behind
I am using NOTIFY on a html input to notify my user whether the record has been saved or not. and It works just fine. But when I try to use it from my code behind file, it isn't. I understand that ...
0
votes
0answers
177 views
Sending And Receiving SMS using a NetBeans application?
I'm making a software which is an inventory control. I need to send Text Messages to shop owner's phone when an employee logged on to the system. But I'm new to java and don't have a much knowledge. ...
2
votes
1answer
226 views
Python GI Notify How can I call the Gtk.main()?
I'm trying to create a Python notification application. To make it short here is what I wanted to do :
1. Checking my gmail account
2. Display a notification with the number of unread mails
3. ...
0
votes
1answer
70 views
Android sqlite read and write
I am filling a table on tabhost after login. I have set up a thread to fill in the table. Meanwhile I click on the tab where I have set up another thread to read the data from the same table and fill ...
1
vote
1answer
144 views
In ZK Can we PostNotifyChange more than one variables
I will want to notify some specific variables of a class with the help of
PostNotifyChange
So i was trying
BindUtils.postNotifyChange(null, null, taskListModel, "model,sequence");
It is ...
0
votes
0answers
13 views
RFC 4661 support
I need to implement the filter mechanism for my application based on the RFC 4661 using c++ reciprocate stack for basic filter content and support body type "application/simple-filter + xml" in ...


