The eventqueue tag has no wiki summary.
0
votes
1answer
80 views
Consuming from queues based upon external event (event queues)
I am running into a use case where I would like to have control over how and when celery workers dequeue a task for processing from rabbitmq. Dequeuing will be synchronized with an external event that ...
1
vote
2answers
70 views
understanding the node.js event queue and process.nextTick
I'm having trouble understanding exactly how process.nextTick does its thing. I thought I understood, but I can't seem to replicate how I feel this should work:
var handler = function(req, res) {
...
0
votes
2answers
44 views
processing the next event in Node.js
For an application where each request may take a second or two, is it possible to only process a piece of operative code on each iteration of the event loop?
For example:
function foo()
{
...
0
votes
1answer
90 views
Simplified MIPS CPU using high level programming languages
I'm trying to design of an analyzer/simulator for a simplified MIPS CPU using a high level programming language preferably Java. The considered MIPS CPU adopts the CDC 6600 scoreboard scheme to ...
0
votes
0answers
41 views
event dispatch thread [duplicate]
what is difference between event dispatch thread and any normal thread like main thread in creation swing compoments and handling events , what is features of event dispatch thread over main thread
...
0
votes
1answer
55 views
EDT on Swing (for Dummies)
So, I'm just working on a little game, which works quite fine, except for the GUI. Basically, I need to modify the GUI when clicking a button. I realize that I have to run my code on the EDT to do so, ...
0
votes
2answers
200 views
Javascript mousemove event queue
In Javascript, is it possible in a mousemove event handler to determine if there are any pending mousemove events in the queue?
Or, preferably, is it possible to make the event queue skip all ...
0
votes
1answer
118 views
PyQt4 - Holding down a key detected as frequent press and release?
I've noticed some unusual behavior when the QApplication processes key events, which jeopardizes a small game I'd hoped to make.
Holding down a key causes the keyPressEvent and then keyReleaseEvent ...
1
vote
1answer
89 views
find how many Runnables are waiting on the EventQueue
Is there any way to determine how many Runnables are currently queued in the EventQueue?... I mean the system EventQueue, i.e. all the Runnables to be run in the EDT. And mess with the queue, maybe?
...
1
vote
1answer
66 views
save EventQueue events and restore
Is it possible to save pending events from event queue and then restore them?
There is following workflow: user click on JTable row and there is a check if row is changed, depending on that check ...
0
votes
0answers
286 views
Android UI Thread and Event Dispatcher Thread
Are the UI thread and Event Dispatcher thread, in Android the same thing ?
For instance, when the user touches a button on the screen, your app's UI thread dispatches the touch event to the ...
0
votes
3answers
141 views
AWTEvent and EventQueue
I have an external device that is sending me data 1 character at a time. I'm writing this to a StyledDocument on a JTextPane. This data is sent to me on a thread that is not the AWT thread so I need ...
0
votes
0answers
137 views
Tracking memory leak cause in code
I have a memory leak in my app, probably caused by pushing too many tasks (Runnables) on java.awt.EventQueue.
Here is a snapshot from Eclipse MAT: http://postimage.org/image/c6xmjkdbf/full Selected ...
1
vote
2answers
140 views
How to share information between GUI threads?
I’m writing a client application with an accompanying GUI (Swing). My two classes, ClientClass and MainFrame, are running different threads yet need to call methods in one another. ClientClass ...
4
votes
3answers
415 views
EventQueue.invokeLater vrs SwingUtilities.invokeLater
Can someone highlight on the differences between these two and the instances both are required?!
I have an application which uses both intercheably, but want to know if one is better than the other. ...
1
vote
2answers
59 views
How can I tell if my JComponent is receiving repaint calls from software?
I am trying to narrow down why my JComponent is not redrawing. It is odd in that I can get redraw to work on mouse press and release, but not on drag. Is there a way to print out the EventQueue or ...
2
votes
3answers
218 views
Java API “Run on EDT if not on EDT”
Just a musing about repetitive code I have:
Runnable run = new Runnable() {
@Override
public void run() {
// Some EDT code
}
};
if (!EventQueue.isDispatchThread()) {
...
1
vote
0answers
549 views
Node.js Event Queue Priority
I'm writing a Node.js app that - long story short - prioritizes different IO processes, depending on a user's activity/location on a website. So far, everything is running great - important queued ...
3
votes
2answers
277 views
NetBeans' HintsController and EventQueue
We are building an application based on the Netbeans Platform, and one part of it is an editor for a specific language we use.
We have the following class to highlight errors in the syntax:
class ...
1
vote
2answers
363 views
Get current instance of Runnable
I'm making an application that allows users to view task lists stored in different databases. So what happens is that, I have a list of the names of browsable databases (stored as a text file). ...
4
votes
1answer
87 views
EventQueue inconsistent ID's
I have a problem with the following example code that shows inconsistent behavior for the EventQueue:
public static void main( String[] args ) throws InvocationTargetException, InterruptedException {
...
3
votes
2answers
2k views
java swing clear the event queue
Is it possible to do this in a standard manner?
Here is the scenario.
Start doing something expensive in EDT (EDT is blocked till the expensive operation is over).
While EDT was blocked, the user ...
0
votes
2answers
398 views
JAVA GUI Button Question
so I have some code that looks like this:
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Dimension;
import javax.swing.JButton;
import javax.swing.JFrame;
import ...
2
votes
1answer
104 views
How do I design a Java Swing model that also responds to back-end events?
I have written a GUI for operating a card reader - mainly consisting of an ADD button that brings up a FileChooser dialog and queues the chosen File onto a CardHopper, which is displayed visually as a ...
1
vote
2answers
168 views
why do i need EventQueue to start a new thread in java EDT? (JAVA)
Did I get it right? EDT is the main thread of GUI. To start a long operation, it's preferred to run it in new thread. So why do we need to use EventQueue for that? Why can't we simply create and run ...
5
votes
3answers
1k views
Java EventQueue. When should I consider using it?
I'm currently looking at the EventQueue class on the Oracle website:
http://download.oracle.com/javase/1.4.2/docs/api/java/awt/EventQueue.html
But I'm not sure when I should use it? Should I use it if ...
1
vote
5answers
382 views
Is update from EDT in swing an absolute rule or are there exceptions?
In Swing, the GUI is supposed to be updated by the EDT only, since the GUI components are not thread safe.
My question is, if I have a single thread, other than the EDT, that is dedicated to update a ...
14
votes
2answers
2k views
How to replace the AWT EventQueue with own implementation
In order to debug strange behavior in a Swing-application I'd like to replace the AWT EventQueue with my own implementation.
Is this possible? How?
Just in case you are interested:
the ...
8
votes
2answers
1k views
Why do people run Java GUI's on the Event Queue
In Java, to create and show a new JFrame, I simply do this:
public static void main(String[] args)
{
new MyCustomFrameClass().setVisible(true);
}
However, I have seen many people doing it like ...
1
vote
3answers
479 views
Waiting for invokeLater() to be called
Is there a more elegant way to do what I'm doing below? That is, is there a more elegant way than polling and sleeping, polling and sleeping, and so on to know when a Runnable.run() method has been ...
2
votes
7answers
5k views
Bloomberg API request timing out
Having set up a ReferenceDataRequest I send it along to an EventQueue
Service refdata = _session.GetService("//blp/refdata");
Request request = refdata.CreateRequest("ReferenceDataRequest");
/* ...
