Tagged Questions
The concurency tag has no wiki summary.
4
votes
2answers
78 views
Java Swing Update Label
I have a message label and a submit button. The submit button will be pressed multiple times, and the action for the each press can take up to a minute.
When the button is pressed, I want to set the ...
4
votes
1answer
160 views
Can I make ProgressMonitor dialog modal?
is there a way to make the dialog from ProgressMonitor modal?
EDIT:
The ProgressMonitor class in JAVA API will bring a dialog which is on the top but not Modal. User still has access to the ...
3
votes
1answer
36 views
Deadlock when using setText on JTextArea in Swing
I have the following Java Program which one starts in about 50% of all launch attempts. The rest of the time it seams to deadlock in the background without displaying any GUI. I traced the problem to ...
3
votes
4answers
83 views
When to use SwingUtilies.invokeAndWait/invokeLater
I read somewhere that for any thread that affects the visuals of the gui it should be ran in the EDT using SwingUtilities.invokeAndWait/invokeLater
For a basic gui, is it necessary to put something ...
3
votes
1answer
57 views
Good way to set/refresh information with thread in java swing app
I'm not a Java programmer and I'm not sure if what I'm doing is correct or not, or if exist a better way to do this.
I'm making a swing Java app with multi-threading.
I have many swing component ...
3
votes
1answer
98 views
How to use JProgressBar
I want to use JProgressBar and it must be loaded in one second. I don't want wait for any task to complete. Just want to fill the progress bar in one second. So I write following code. But it doesn't ...
3
votes
2answers
219 views
Parallel programming with coroutines in Python
Coroutines are a great paradigm to ease concurrent programming. And most of the time, concurrent tasks are easily parallelizable. In Go language, it is easy to use goroutines to perform parallel ...
3
votes
1answer
1k views
How to get the IdentityReference for “Everyone” to create MutexAccessRule on localized systems?
I'd like to use the code as in this question or this question to create a system wide Mutex.
This works fine on most systems, but on a German XP installation I get the error that "Some or all identity ...
2
votes
2answers
46 views
making efficient implementation of this Java MouseListener Logic
I have a MouseListener Thread where this method is called each time there is a click:
public void mousePressed(MouseEvent event){
//my Logic here
}
Now what happens is that there are so ...
2
votes
2answers
54 views
create a server application having gui
I have to create an application having a GUI. my application has to work as a server. When it starts, it has to accept all the incoming connection and write the output in a JTextArea. my problem is ...
2
votes
1answer
71 views
python greenlet segmentation fault
I use ubuntu 11.10 with Python 2.7.2
I try to use eventlet or Concurrence, but simple examples fails with "segmentation fault"
I read this is a greenlet problem, but don't know how to fix this? plese ...
2
votes
2answers
82 views
Playframework concurrent jobs management
I would like to have some advise on multiple concurrent job management in play : in fact, i'm using in my application two distincts jobs :
the first job is a quick one : it tries to reach two ...
2
votes
2answers
207 views
how to update a jLabel every time with a while loop with a delay
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
int count = jSlider1.getValue();
int delay = jSlider2.getValue();
int ...
2
votes
2answers
224 views
How can I change label color in Java?
I have set of labels in LinkList call "l" and I need to change the background colors of those labels. I need to put 2 secconds gap between each color change so I tried to use repaint method as follows ...
2
votes
1answer
90 views
Maintaining a large number of open sockets in a c# application
I'm writing an application in C# where I want to maintain a large number of open socket-connections (tcp), and be able to respond to data that comes in from all of them. Now, the normal thing to do ...
2
votes
3answers
247 views
java.util.concurrent : calculating primes
I'm new to the package java.util.concurrent. I've created the following program testing if a number is a prime using a multi and a monothreaded strategy.
import java.util.concurrent.ExecutorService;
...
1
vote
2answers
67 views
Java Swing multi threads and ui freezes
Can't figure this one out. Using worker or invokeLater, the UI still freeze. After each file is downloaded, I want a JList to be updated. But the JList will only update after the tread returns.
Here ...
1
vote
2answers
54 views
JLabel will not update unless something causes the method to hang
Firstly, apologies but it would be really hard to reconstruct a SSCCE for this, though I think I can explain the situation considerably well and get my question across,
My situation is as thus: I ...
1
vote
2answers
84 views
Why my GUI in java Freeze when I start calculation in Java
I am developing a java application
but my application Freeze when I start the process of my application
therefore I can update my GUI during the process
do you guys have any idea how to fixed ...
1
vote
1answer
65 views
Progress Dialog in SwingWorker
I have a method register() that takes a lot of time to complete. So i've placed it in doInBackGround() of swingworker. In a meantime i want to display dialog that is modal and has indeterminate ...
1
vote
1answer
52 views
Update window every time image gets recieved
I'm getting images through sockets. Now, I'm actually getting it, but only once as I expected.
I have checked out some classes you can add events to, such as the ImageReader but it wont communicate ...
1
vote
4answers
58 views
GUI isn't shown while thread is in procces in JAVA
i'm making simple game with very simple thread (1 sec delay)
got problem with the thread, i have while(true) loop with the code:
try
{
while (true)
{
...
1
vote
2answers
57 views
How to check is any thread waiting on condition variable?
I have Condition variable named cond.
Is there any method which could give me true or false if there is any thread awaiting on cond?
I need something like:
Boolean cond.isAwaitingSetEmpty()
...
1
vote
2answers
107 views
Graphics flashing
When I run the program everything works fine, it all works and stuff but the graphics constantly flash. I'm new to doing stuff like this and I have no idea how to fix this.
import java.awt.Frame;
...
1
vote
2answers
140 views
Setting JLabel Text at Runtime
I am pretty new to Java(about 2 weeks in), and I am trying to set the text of a JLabel. The only problem is I am doing calculations in another class and I don't know how to reference the Jlabel I have ...
1
vote
1answer
93 views
Swing invokelater freeze
im calling invokeLater direcly from button on actionPerformed with this code:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
SwingUtilities.invokeLater(new Runnable() {
...
1
vote
1answer
88 views
Forcing JLabel to display text before expensive operation
I'm having trouble getting a JLabel to display text immediately before updating it with an ImageIcon.
I have a JLabel that is a fixed size that will be displaying either text or an image that fits it ...
1
vote
2answers
299 views
Notifying consumer when producer is done
I'm reading in a lot of data from ldap which needs to be compared to the respective records in the database. To minimize the number of SQL queries, I want to batch multiple ldap records into a single ...
0
votes
3answers
49 views
updating jlabel
I am having trouble updating a jlabel in a method. here is my code:
JLabel curStatus = new JLabel("");
JButton jbtnSubmit;
public static void main(String[] args) {
test gui = new test();
...
0
votes
1answer
35 views
JTable in a JScrollPane doesn't automatically repaint when scrolling
I have a JScrollPane that holds a JTable. The table is dynamically populated from a database query. That all works fine and the table is getting populated, but its wider than the visible window.
I ...
0
votes
2answers
51 views
JTextArea default value?
I have been taught only to manage the GUI through the event dispatcher thread. Currently I am using a textArea.append("something"); outside of the event dispatcher thread, but I want this to always ...
0
votes
2answers
59 views
frame shows black screen
btnnew.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
try {
System.out.println("Hello");
...
0
votes
1answer
71 views
Roboguice, AndroidAnnotations and events between threads
When RoboGuice fires Event, where will my event callback be executed, in which thread?
For example, I have an activity which has do(@Observes OnUpdateUiEvent e). I also have a background thread which ...
0
votes
1answer
43 views
await method of class Condition not throwing InterruptedException
I have strange issue with an await method of Condition class in Java SE 6.
The problem is that await method NOT always throws an exception while interrupting by another thread.
In documentation it ...
0
votes
2answers
54 views
Timer Won't Fire Correctly
I'm using a Timer to toggle a boolean, but instead of firing every 250ms like it's supposed to, it fires as fast as it can. Here is my code:
package com.cgp.tetris;
import java.awt.Graphics;
import ...
0
votes
2answers
104 views
Gui froze in while loop
server.java
ok, so the problem is: When I hit the start button, the gui "froze", but the server is working, I have an output in console. I think I should use threads for it, but I don't know how to ...
0
votes
2answers
51 views
Printing intermediate steps in java freezes
I'm writing a java application that encrypts and decrypts the input by DES algorithm. First I made it without GUI and printed the intermediate steps in the output window by using System.out.print();. ...
0
votes
1answer
37 views
Table locking for read
I have a table that stores ranges (start, end).
Every time the program gets the max(end), adds count to it, and writes back a new range
(max(end), max(end) + count).
If I ran more than 1 instance of ...
0
votes
3answers
72 views
is there anyway to run a thread while giving it an argument?
Can anyone tell me if there's a way to run a thread and give it an argument ? its like Giving an argument to that Runnable's run method , sth like
class Test implements Runnable
{
public void ...
0
votes
1answer
46 views
DBMS: concurrency control AKA the cup of cofee principle
In French we call that problem of concurrency control the cup of coffee principle. It should be the same in English, shouldn't it?
Here's the principle. Let's imagine a hospital management system. A ...
0
votes
1answer
313 views
jpanel dont draw a buffered image but the buffered image can be created as file
Hi i have a jpanel to draw on. from this jpanel i make bufferedimages and safe them into a linkedlist. on a button press i want to animate this bufferedimages(play one after one)
the problem is that ...
0
votes
1answer
210 views
AWT-EventQueue-1 on JList
I finally got the code to compile correctly. However, there is a probably. I set the listbox to add a mouselistener and all but I get a huge error:
I added this, primarily, to the code: ...
0
votes
4answers
151 views
Linq to sql - executing mulitple queries on the same transaction
I am creating entries in a contract table using linq to sql.
One column needs to conditionally be assigned an application number from a range of values.
I'd like to simply increment the max existing ...
0
votes
1answer
103 views
synchronized(Object) { } problems
I have ran into a perfomance problem where 880 threads are doing synchronized() { method() } in the same time and this has lead to a major perfomance problem.
Is it possible that there is some limit ...
-1
votes
1answer
21 views
multiple swing worker for an application with various button
supposing I have an application with various buttons.every button execute a different task.One opens a file, another prints some information and so on.I have to implement a different object that ...
-1
votes
4answers
118 views
Trade offs between using Java's built in concurency mechanism versus Utilities provided in java.util.concurrent
What are the trade offs between using Java's built in concurency mechanism versus utilities (like ReentrantLocks for example) provided in java.util.concurrent
-3
votes
1answer
113 views
How to lock in one thread and wait until lock will be released in another thread
I just want wait in main thread until some event in run.
How can I do it using java.util.concurency classes?
Thanks!
P.S.
Does my question realy explained bad o correctness check is shit? I mean ...