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.

learn more… | top users | synonyms

0
votes
1answer
10 views

Uniform Parameter handle in SharpDx DirectX11 HLSL

I'm wondering if there is another way to access uniform Parameters in SharpDx besides the constantbuffer cbuffer Variables : register(b0){ float4 cL; } I think the register(b0) tells the ...
1
vote
1answer
46 views

Handler class should be static?

I am building a chat app for android and in the following part (second line): // The Handler that gets information back from the BluetoothChatService private final Handler mHandler = new Handler() { ...
0
votes
0answers
8 views

Writting an Axis2 handler

I am trying to write 2 Axis2 handlers but there is there is something missing I can't put my hand on The first handler is supposed to start at the very beginning before anything else, it will read ...
0
votes
0answers
8 views

Register ISaveHandler & IWindowCloseHandler to Eclipse RCP4 Application

how to register a custom ISaveHandler and IWindowCloseHandler to an Eclipse RCP4 Application? I created custom ISaveHandler and a custom IWindowCloseHandler to alter the close behavior of Parts and ...
1
vote
0answers
14 views

Jetty Continuation handler registration

I'm writing a servlet that runs commands on an exsisting java system ("MyJavaSystem") and write output to user. The commands executed are asynchronous and servlet must return each result line to ...
0
votes
0answers
8 views

Stopping MediaPlayer

Hi I have searched on SO but didn't find solution . I have a mediaPlayer that starts well on an ImageButton that leads to the second activity. Sadly l am failing to STOP/PAUSE the mediaPlayer on the ...
0
votes
0answers
19 views

Drupal 7 - Multiple image buttons on same form result in wrong “clicked_button” value

So I have a form that creates a few control buttons for either confirming, editing, or deleting the associated item. The buttons are all image buttons, with different submit handlers, different names, ...
0
votes
0answers
36 views

How to setup a constantbuffer in sharpDx DirectX11

I'm trying to access a Uniform Paramter and change it's Value in SharpDx. I've already posted this on the SharpDx board but I did not get a Reply so I'm trying my luck here. Through google I found ...
0
votes
0answers
16 views

Android Bluetooth Discoverable Handler

I would like to make an handler to trigger when my device becomes undiscoverable.. I could do it, with an "thread" checking each 50 ms if the device turned discoverable off.. But isn't there a method ...
0
votes
1answer
22 views

Android - Function execute listener

Hey i don't know if that's the right way to do it but if it is how can i do it... I have one abstact class with AsyncTask public abstract class A{ A(){ new Task().execute(); } public ...
0
votes
1answer
12 views

Frame Animation doesnt run on second click

It work well on the first tap, but then on the second tap it doesn't respond. It waited for 1 second then execute 'generateRandom()' method Can anyone help please? My code: ...
0
votes
1answer
7 views

TRAC. Return a javascript variable back to javascript

Is there any way to pass a javascript varialbe during process_request in trac 0.11? The code goes like this: def process_request(self, req): component = req.args.get('component_name') ...
0
votes
2answers
56 views

How to start a new intent / call a method in a handler?

In my case, I have a problem starting a new intent or call a method to start this intent if strReceived from bluetooth matches a final declared string str. How do I solve the 'Cannot make a static ...
0
votes
3answers
29 views

How to get Usercontrol object 'X' from X's Button(i.e. Button inside the X) onclick event

Hello guys i am working on a Windows Form application in .Net C#. Now i have a User control with a button inside it. however i had to write the on-click handler in the main form rather than inside ...
0
votes
1answer
18 views

Adding View doesn't Appear

I am trying to add checkboxs to a view that I have on my layout. The problem is that is not showing, but I know that is being added because of getChildCount() at parent view returns a new more item.. ...
0
votes
0answers
8 views

How to test an Http Handler

I have this in my web.config: <httpHandlers> <add verb="*" path="test.sample" type="HttpHandler.IISHandler1"/> </httpHandlers> I ...
0
votes
3answers
35 views

How to keep an activity in foreground for 15 seconds and then dismiss it?

I need to start an activity at time 0, keep it in the foreground for 15 seconds and then stop the activity. What is the best way of doing this? Thanks!
-1
votes
1answer
21 views

Why does “msg.sendToTarget” stop the loop?

Handler hnd = new Handler() { @Override public void handleMessage(Message msg) { int id = sequence.get(msg.arg1); if(msg.arg1 % 2 == 0) { ...
-1
votes
2answers
53 views

What is Handler class? [closed]

What is Handler class in java.
1
vote
0answers
29 views

Issue making a JAX-WS Request within a seperate SOAP Handler

I am having an issue making a JAX-WS request from within the Handle function of a SOAP Handler. Everytime I specifically make a webservice call, it somehow screws up the WebServiceContext causing the ...
0
votes
1answer
23 views

Using Postdelayed to stop Http request after a specified time?

I want to stop the http request after sometime, for this i am using httpclient.getConnectionManager().shutdown(); inside a handler like this: new Handler().postDelayed(new Runnable() { ...
0
votes
0answers
10 views

Delay in plotting the data received via Bluetooth

*In the following code we are sending '6' to start communicating to a serial port device(bluetooth device) which sends 500 data per second. The device is sending the data successfully in the bluetooth ...
1
vote
2answers
25 views

when does not touch for a while activity?

I have a screen and if a user goes there and does nothing, the screen should close after 15 seconds, but if the user starts to input something the wait time must now increase before the screen is ...
0
votes
0answers
26 views

How is DeferredHandler used in android Launcher Source code different from android.os.Handler

How is the behaviour of class DeferredHandler different from the Handler available in android.os.Handler?
0
votes
0answers
10 views

Android get message from thread

I'm new here,I meet a problem,so ask for help. In my adroid app, I want to use udpRecvThread to recv data from PC,then start an Activity it can handle or get the message from the udpRecvThread,and ...
2
votes
1answer
50 views

Handler changing UI causes CalledFromWrongThreadException

I've created a Handler that can be accessed from anywhere within the activity and also written a method to make it easier to call the handler: private Handler textFromBGThread = new Handler() { ...
0
votes
2answers
23 views

C# tick event, direct use

I want to do some code every tick. timer.Tick += new EventHandler(TabPage tab = new TabPage(Convert.ToString("test"));) But this is wrong, i dont remember how do this correctly. I do not want to ...
0
votes
1answer
39 views

Hello World with using Thread in Android

I've been studying examples of Threads and Handlers in Android - a new concept for me. I thought I would start simple with Hello World. I took some snippets from other people's code to see if I could ...
1
vote
1answer
64 views

Netty 4 Outbound Message Handler Closing Connection

I'm experimenting with a custom outbound message handler in Netty 4 and cannot seem to get it to work. The handler just logs a statement and is added toward the bottom of the channel pipeline. My ...
0
votes
1answer
43 views

Handler: repeating code on android

i got this issue, i have a handler in Activity A that is use for show some message depending on the Message.what attribute, ok so far, i got a second Activity (Activity B) which is started by Activity ...
0
votes
3answers
25 views

Android ProgressDailog crashes on dismiss while in a thread

Hi I am trying to execute the code below it suppose to open a loading dialog and dismiss it in the if statement. here is the code: loginBtn.setOnClickListener(new OnClickListener() { ...
0
votes
1answer
45 views

seekbar not working when runnable and handler.postdelayed() are added in android apps

I'm not sure why I get error on the handler. The codes work until when I add in the handler to control the seekbar, it will prompt error. package com.voice.recording.v3; import ...
0
votes
1answer
47 views

cannot convert between nested templated types

I am trying to write a message handler whose Base classes are 1-Handler base class 2-Handler Factory that generates proper handler for a proper message type 3-and a base generic class for message ...
-1
votes
0answers
69 views

AsyncTask onPostExecute not called

I am experiencing some problems with AsyncTask instances not executing their onPostExecute methods. This problem has been reported many times before, but mostly because of faulty method interfaces, or ...
0
votes
0answers
35 views

PHP Custom Error Handler Return Continue to While Loop

I'm using a SQL query to retrieve an array with IP addresses ($ipaddr). I then loop through the array calling 5-6 snmp3_get functions for each IP address. If any of the snmp3_get command throws an ...
0
votes
0answers
36 views

Notification handler on Android

I use PushSharp for my notifications and the notifications are sending through to both iOS and Android devices. However, I when I tried to get the JSon message from the notification, I always get ...
1
vote
1answer
57 views

C: Writing a proper time-out

Upon closely scouring through resources, I'm still not entirely sure how to write a proper and usable timer function in C. I am not working with threads (or parallelizable code). I simply want to ...
0
votes
0answers
35 views

Ubuntu custom URL protocol handler

I want to ask a question, but I will first show my files <html> <body> <a href="cloudje:firefox">Open firefox</a> </body> </html> My .desktop file: [Desktop ...
0
votes
1answer
60 views

Android worker thread with its own Handler/Looper

I want to have a worker thread that can 1) send messages to the UI thread to change things in the GUI, and 2) receive messages from the UI thread to control the worker thread's behavior. The first ...
0
votes
1answer
62 views

Adding event handlers Dynamically to controls within a panel

I've a class which is in a nutshell: class MyPanel { Panel p_panel; //declaring all the elements I need CheckBox cb_choice; RadioButton rb_nagy, rb_kicsi; TextBox ...
0
votes
0answers
14 views

How to identify a wizard control via an OnCreatedUser event handler

I have a CreateUserWizard created exactly as follows: <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" CssClass="Wizard1" CreateUserButtonText="Create Account" ...
0
votes
1answer
27 views

How to put a list of objects in a message (or any other way to send this list)

I am coding an application which uses a Remote Service to start a Thread which loops to collect informations. Then the service shows them to the user, and writes them in a file. I am trying to send ...
2
votes
1answer
30 views

asp.net handler not picking up case sensitive

I have this handler in my web.config: <add name="handler1" path="*.jpg" verb="*" type="ImageHandler" resourceType="Unspecified" preCondition="integratedMode" /> Problem is the path is case ...
0
votes
2answers
58 views

Android: Updating UI using Handler

I implemented an Android Application that consists of four activity (A,B,C,D). A calls B; B calls C and C calls D. The activity A implements a Handler Handler handler=new Handler(){ public ...
0
votes
1answer
48 views

Can't retrieve image in image control via image handler

I am successfully able to store image in database but I am unable to retrieve it... I have database ImageDatabase with a single table Pict that contains two columns Letter (varchar(50)) (pk) and ...
1
vote
2answers
79 views

Execute all sheduled (postDelayed) runnables in Handler

I use a Handler, which post some Runnable via postDelayed(r, DELAY_TIME), but I need to execute all Runnables before posting new via postDelayed. Any good ideas how to achieve this as simple as ...
0
votes
3answers
72 views

Android Handler calling Runnable twice

I know this question has been asked before, but there was no answer provided. I also tried looking elsewhere, have traced the function calls and checked everything, but I cannot figure out the answer. ...
0
votes
1answer
39 views

Gwt, How to code the Right-ClickHandler for Label?

Ok, for label, we got ClickHandler, ie, when we click on the label it will do something. But I want to do something like Right-ClickHandler for Label, ie, when user right click on the label, it will ...
0
votes
0answers
30 views

Getting null value from remote service in android

In my project I have a remote service that communicate to client. For example Project-A is a remote service and Project-B is client. To communicate both applications I am using AIDL interface. Using ...
1
vote
2answers
89 views

My Runner using a Handler is not working on android

Here's what I got so far guys, this is my app, all it does is display a digital clock and move the clock to a new part of the screen every 30 seconds, but it doesn't actually do that last part, here's ...

1 2 3 4 5 29