Tagged Questions
In the Observer pattern, an event handler is the function or method called on an observer listening for an event dispatched by the subject. Also known as an event listener.
31
votes
6answers
3k views
Is AsyncTask really massively flawed or am I just missing something?
I have investigated this problem for months now, came up with different solutions to it, which I am not happy with since they are all massive hacks. I still cannot believe that a class that flawed in ...
25
votes
4answers
5k views
Android - AsyncTask and error handling
I'm converting my code from using Handler to AsyncTask. The latter is great at what is does - async updates and handling of results in the main UI thread. What's unclear to me is how to handle ...
11
votes
3answers
6k views
ASP.NET: How to access Session from handler?
i'm trying to store some values in the Session from a Handler page, before i do a redirect to a WebForms page, that will pick up the Session values and pre-fill the WebForm:
public class Handler : ...
9
votes
6answers
9k views
How to call a method after a delay
I want to be able to call the following method after a specified delay.
In objective c there was something like:
[self.performSelectorAfterDelay @selector(DoSomething) withObject:nil afterDelay:5];
...
8
votes
2answers
147 views
Events - Handler vs direct access? Why?
SAMPLE CODE:
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(String propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if ...
8
votes
2answers
402 views
Python logging: Why is __init__ called twice?
I am trying to use python logging with a config file and an own handler. This works to some degree. What really puzzle me is __init__ being called twice and __del__ being called once. When I remove ...
8
votes
1answer
1k views
Asp.NET Handler and Generic Handler
In Visual Studio 2010, when you say new Item, you can see Asp.NET Handler and Generic Handler. Can you tell me what's the difference, I think it came with .NET 4.0 because I couldn't find related ...
8
votes
4answers
380 views
C# event removal syntax
I am confused by the syntax for removing event handlers in C#.
Something += new MyHandler(HandleSomething); // add
Something -= new MyHandler(HandleSomething); // remove
The "new" creates a new ...
7
votes
3answers
2k views
Does jQuery have a handleout for .delegate('hover')?
I am trying to use:
$('mydiv').delegate('hover', function() {
$('seconddiv').show();
}, function() {
//For some reason jQuery won't run this line of code
$('seconddiv').hide(); ...
7
votes
5answers
2k views
6
votes
0answers
68 views
Nginx gzip filter not work with my custom handler
I wrote a very simple nginx handler,just output some text (size 100B to 10KB).
the code works properly with nginx( ver 1.0.6)
but I found gzip filter can not work with the handler .
when I turn ...
6
votes
3answers
348 views
Handling Camera-Style Mouse Movement in Javascript (enabling continuous mouse movement)
The idea: I'm creating a simple WebGL script (using mrdoob's wonderful three.js) that allows the user to control a camera in a world of objects. The camera is supposed to simulate traditional first ...
6
votes
2answers
409 views
javascript image onError in case of non 200 response
I have to count image loading time. onLoadHandler is responsible for it.
<img onError="onErrorHandler(this);" onLoad="onLoadHandler(this);" alt="" border='0' width='1' height='1' ...
6
votes
2answers
176 views
Why isn't my TFrame “seeing” a posted message?
I just recently begun using TFrames heavily (OK, yes, I've been living under a rock...). I thought frames supported Message hander method declaration--and I've seen many examples of that. So why does ...
6
votes
1answer
2k views
How to create a Looper thread, then send it a message immediately?
I have a worker thread that sits in the background, processing messages. Something like this:
class Worker extends Thread {
public volatile Handler handler; // actually private, of course
...
6
votes
8answers
2k views
What's the difference between Event Listeners & Handlers in Java?
In general terms of java, there are listeners & handlers for events.
I mean I use them unknowingly just whichever they are available in the API.
My question is that what kind of cases do we ...
6
votes
2answers
5k views
Updating UI with Runnable & postDelayed not working with timer app
I have looked at every discussion and thread I can find on getting this to work but it is not. I have a simple timer that updates a text view (mTimeTextField in the example below). The mUpdateTimeTask ...
5
votes
2answers
60 views
Best-practice: Update ArrayAdapter continously
I have a Service which fetches some data from the web and updates a List which is "stored" in the Application.
Thus, i can access it from the main activity and use it for my ArrayAdapter.
When I ...
5
votes
2answers
59 views
execute something on every function call php
Whenever any function invocation happens in PHP, I want to log the function name, its arguments and time of invocation. Is there any means to achieve this. I have a function to log, how to set this ...
5
votes
1answer
189 views
How can I handle SIGINT in Erlang?
I know how to create custom signal handlers in Java, Python, Ruby, Perl, and Lisp, thanks to Google and a plethora of tutorials. I can't find online how to create handlers for SIGINT, SIGTERM, HUP, ...
5
votes
1answer
8k views
Android : CalledFromWrongThreadException;: Only the original thread that created a view hierarchy can touch its views
I have an issue with the following error in Android:
CalledFromWrongThreadException;: Only
the original thread that created a
view hierarchy can touch its views
It appears to happen when I ...
4
votes
2answers
481 views
Difference between Handler.post(Runnable r) and Activity.runOnUiThread(Runnable r)
Hy all!
I want to know if there a difference between
new Handler.post(Runnable r);
and
activity.runOnUiThread(Runnable r)
Thanks!
4
votes
2answers
201 views
Android - Using Handlers?
Is there any problem with using multiple Handlers in the same Activity.
I noticed that in all samples provided in android official website they use a single handler and detect different actions ...
4
votes
2answers
112 views
how to select lines in Mysql while a condition lasts
I have something like this:
Name.....Value
A...........10
B............9
C............8
Meaning, the values are in descending order. I need to create a new table that will contain the values ...
4
votes
4answers
270 views
Global error handling of file_get_contents() PHP
Hey guys,
so I'm occasionally getting errors while using file_get_contents and its used a fair bit in my script. I know I can suppress errors individually with @file_get_contents and that I can set ...
4
votes
5answers
413 views
HOWTO determine if code is running in signal-handler context?
I just found out that someone is calling - from a signal handler - a definitely not async-signal-safe function that I wrote. And, of course, I'm getting the blame (despite warnings in my ...
4
votes
2answers
303 views
MySQL transaction conundrum
I need to perform several inserts in a single atomic transaction. For example:
start transaction;
insert ...
insert ...
commit;
However when MySQL encounters an error it aborts ...
4
votes
1answer
954 views
RuntimeException from Google Analytics for Android “sending message to a handler on a dead thread”
I am using Google Analytics for Android to track events, page views on an Android app. When calling the tracker's dispatch method, I receive a RuntimeException:
07-12 18:02:05.594: ...
4
votes
1answer
892 views
Best way to update an Android widget every 20-30 secs: Handler, Service or Alarm?
I have a 4x4 widget and i want to update a little piece of it every 15-20 seconds. Clearly i don't want it to be updated when the phone is in standby. The widget needs also to respond to some system ...
4
votes
3answers
104 views
jquery: is there a fail handler for $.post in Jquery?
When $.post succeeds, there is a success handler for it. What happens if it fails? Is there a similar handler that we can use for this case, so that we can inform the user that something is not ...
4
votes
2answers
3k views
Android: Quitting the Looper?
I have a thread I use to periodically update the data in my Activity. I create the thread and start a looper for using a handler with postDelay(). In onDestroy() for my activity, I call ...
4
votes
3answers
156 views
Detecting when a handler couldn't be started when embedding Jetty
I'm embedding Jetty in a similar manner as described here. When the RequestLogHandler can't open the specified logfile, it throws an exception which is unfortunately caught by ...
4
votes
4answers
546 views
C# Sharp Windows Application prevents Windows from shutting down / logging off
I have written a C# Windows Forms application, not a service (it is only used when the user is logged in and has a graphical user interface) that has a background thread running in an infinite loop.
...
4
votes
4answers
2k views
What is a handler
Hi I am trying to learn some programing related terms, and I often comes over the word handler. Can anyone pleas explain what handler means and when to use the term.
Thanks in advance
t
3
votes
2answers
87 views
ProgressBar countdown with Handlers in an Android application
I first want to say I used google a lot to find a progress bar that fills itself when time passes. All results I found where either with a thread or with an Asynctask. As being new to Android, I ...
3
votes
1answer
30 views
jQuery clicking an element, Child interferes
I have an even in jQuery, when they click the DIV it hides itself. My problem is that the SPAN it interfering with it, meaning I have to click outside of the span and exactly on the DIV.
Can I make ...
3
votes
1answer
67 views
Is there a good introduction to Perl Handlers?
I'm using the Perl mod XML::SemanticDiff which can compare two XML documents. I want to write my own custom handlers but, being relatively new to Perl I'm at a loss as to how to do this.
I ...
3
votes
2answers
118 views
MonoDroid Looper.MyQueue() hangs on some activities / Idle Handler?
I'm using MonoDroid Looper.MyQueue().AddIdleHandler() to execute some Commands when the app is in idle mode. This is working in one activity, but if I'm starting the second activity it hangs until i ...
3
votes
0answers
95 views
How to handle a custom protocol on Blackberry
I'm trying to integrate my application with the web browser on Blackberry platform: the application should be registered as the default handler for a custom protocol (something like ...
3
votes
1answer
193 views
android Difference between handler.postAtTime and handler.postDelayed
Please tell me the difference between handler.postAtTime and handler.postDelayed in android.And also please guide me when to use handler.postAtTime and when to use handler.postDelayed.
3
votes
1answer
195 views
Filters and handlers for FileUpload
In my GWT project I would like to:
Set a filter for the FileUpload widget so that it only accepts JPG files.
Enable myButton if the FileUpload widget, called chooser, has any file choosen. And ...
3
votes
2answers
178 views
Issue with timer with long signal handler (SIGALARM)
There is a timer which sends out signal SIGALARM every 1 sec. A signal handler which sleeps
2 sec is registered. What happens? Specifically, I have following code, in which the process runs multiple ...
3
votes
2answers
897 views
How to remove all callback from a Handler?
I have a handler from my sub-Activity that was called by the main Activity. This handler is used by sub-classes to postDelay some Runnables, and I can't manage them. Now, in onStop event, I need to ...
3
votes
1answer
150 views
Does PowerShell 2.0 support COM event handler?
I need to implement an event handler for this NewCivicAddressReport event of the CivicFactory object.
This following code, using event handler naming convention, works perfectly in VBScript:
Dim ...
3
votes
1answer
257 views
COM event handler in VBScript
I want to catch the NewCivicAddressReport event which means I need to implement the event handler. Can anyone explain why the VBScript code embedded in html page works but the VBS file doesn't?
Here ...
3
votes
3answers
341 views
System.NullReferenceException When checking if != null
I'm using an ASHX handler, i want the handler to check if Session != null.
if (context.Session["Username"] != null)
And i get this error pointing this line:
System.NullReferenceException: ...
3
votes
1answer
602 views
Android: Pulling the Location at Regular Intervals crashing, Looper Prepare (Yes I searched!!)
I am trying to pull the Location at regular intervals and send it over the network. Before doing that I feel it's important to verify that I am pulling the location correctly! To do that I attempt ...
3
votes
2answers
357 views
apache .gz gzip content handler for Linux documentation /usr/share/doc and localhost/doc/
How could I create a simple content handler for apache .gz gzip content. I want it to uncompress say http://localhost/doc/FAQ/Linux-FAQ.gz and send it to the browser as plain text. There is a lot of ...
3
votes
2answers
149 views
Why doesn't Handler trigger alert as expected?
I need my app to trigger an alert a specified amount of time after a user presses a button. The documentation makes it look like Handler is what I need, and usage appears to be brain dead.
However, ...
3
votes
1answer
348 views
Is there a better way of manipulating SOAP messages than Jaxws SOAP Handler Interceptor before the message gets to the container?
I am currently using the jaxws and apache CXF framework to create webservices using the top down approach.
I am using the SOAP interceptors to add remove SOAP header elements, using SAAJ, before the ...