Tagged Questions

16
votes
9answers
2k views

Why Clojure instead of Java for concurrent programming

When Java is providing the capabilities for concurrent programming, what are the major advantages in using Clojure (instead of Java)?
13
votes
3answers
328 views

Java Framework for managing Tasks

my question is, whether there exists a framework in Java for managing and concurrently running Tasks that have logical dependencies. My Task is as follows: I have a lot of independent tasks (Let's ...
6
votes
4answers
230 views

Behavior of ConcurrentModificationException

I am working on a piece of code with Iterator and getting a ConcurrentModificationException at the line a when I run the program from my IDE on windows-- LinkedList ll =new LinkedList(); . . . ...
6
votes
3answers
328 views

Multiprocessor programming: lock-free stacks

In preperation for my upcoming Concurrent Systems exam, I am trying to complete some questions from the text book "The Art of Multiprocessor Programming". One question is bugging me: Exercise 129: ...
6
votes
3answers
293 views

Java: reference escape

Read that the following code is an example of "unsafe construction" as it allows this reference to escape. I couldn't quite get how 'this' escapes. I am pretty new to the java world. Can any one help ...
5
votes
6answers
189 views

Is synchronization needed while reading if no contention could occur

Consider code sniper below: package sync; public class LockQuestion { private String mutable; public synchronized void setMutable(String mutable) { this.mutable = mutable; } ...
4
votes
5answers
504 views

Is there a Mutex in Java?

Is there a Mutex object in java or a way to create one? I am asking because a Semaphore object initialized with 1 permit does not help me. Think of this case: try { semaphore.acquire(); //do ...
3
votes
3answers
496 views

Java: nice way to stop threaded TCP server?

I have the following structure for TCP client-server communication: On server startup server starts acceptor thread, that accepts client connections and passes ServerSocket to it. When a client ...
2
votes
3answers
257 views

Compare java and scala in MultiThread aspect [closed]

I just hear and see people saying scala is designed for MultiThread though it's actually for general purpose. And it claims "The thing is that while you can make classes thread-safe in Java (if you ...
2
votes
2answers
664 views

How to use ExecutorService of java concurrent programming?

Iam using below code for uploading images on the remote server.When I use below it is uploading all images cocurrently on remote server. List<Future<String>> futureList = new ...
2
votes
2answers
81 views

Performance analysis of a Multi-theaded Java application

What is the method generally used for doing the performance analysis of a multi-threaded Java application. I need to monitor the utilization of the processor cores.
2
votes
1answer
714 views

Java blocking issue: Why would JVM block threads in many different classes/methods?

Update: This looks like a memory issue. A 3.8 Gb Hprof file indicated that the JVM was dumping-its-heap when this "blocking" occurred. Our operations team saw that the site wasn't responding, took a ...
1
vote
0answers
58 views

Concurrent programming java [migrated]

I am creating a simple server that accepts a int and returns twice the value received. Here is my code: public class MyServer{ private static int port = 1234; public static void ...
1
vote
4answers
74 views

How to explain atomic actions?

Hi I am just trying to answer this question but not sure if my answer is correct, has anyone any better way of explaining an atomic action? Question: In a concurrent system it is necessary to ...
1
vote
1answer
154 views

How to solve the producer-consumer using semaphores?

I need to code a problem similar to producer-consumer, that must use semaphores. I tried a couple of solutions and none of them worked. First I tried a solution on Wikipedia and it didn't worked. My ...
1
vote
4answers
169 views

How to implement a Binary Semaphore Class in Java?

I can see how a "standard" Semaphore Class can be implemented in Java. However, I cant see how to implement a Binary Semaphore Class in Java. How does such implementation work? When should I call the ...
1
vote
1answer
92 views

Manipulate Thread Implementation in JVM

Recently, I've been working on the deployment of concurrent objects onto multicore. In a sample, I use BlockingQueue.take() method whose specification mentions that it is blocking. It means that the ...
1
vote
1answer
193 views

Efficient algorithm to distribute work?

It's a bit complicated to explain but here we go. Basically, the issue is "How to break up problems into subproblems in an efficient way". "Efficient" here means, the broken up subproblems are as big ...
0
votes
4answers
56 views

java reuse an executor

I work on a simulation system, where at each timestep, I have to simulate many models. I used a FixedThreadPool to speed up the calculation: ExecutorService executor = ...
0
votes
0answers
29 views

Asynchronous Procedure Calls Definition?

What is an asynchronous procedure call? Explain how asynchronous procedure calls can be implemented in java? Im not sure if my answer to this question is correct? My answer: Asynchronous Procedure ...
0
votes
1answer
342 views

How to code the dining Philosophers in Java using semaphores?

I have to code a solution to the dining philosophers problem in Java using semaphores. The semaphore is done "by hand" creating a semaphore class. And looks like this: package principal; public class ...
0
votes
2answers
58 views

Stopping a threadpool on satisfied condition

I'm using the ExecutorService to process thousands of small independent tasks. Each task, on completion, stores the result (which is either true of false). So, instead of processing all of the tasks, ...
0
votes
3answers
73 views

Multithreading useful upto what extent?

I have a task which can I divide into multiple independent subtasks and Each subtask can be run in a separate thread in Java. I want to understand what is the optimal number of threads after which ...
0
votes
0answers
120 views

loop not iterating in concurrent app

I've an app that places a fisheye effect on a bitmap. The image processing class runs concurrently. It distorts a bitmap then stores the pixels in an array from which the distorted bitmap is made. ...
0
votes
4answers
234 views

Get all threads that run with a specified Runnable

I have one Runnable that is used by more than one thread: Runnable myRunnable = new MyWorker(); Thread one = new Thread(myRunnable); Thread two = new Thread(myRunnable); one.start(); two.start(); ...
0
votes
2answers
175 views

Java RMI: concurrency support

I am developing a multiplayer card game with a P2P architecture, it isn't a my decision, the project has been commissioned by the professor of Distributed System course at my University. Another ...
0
votes
1answer
349 views

Active Object Pattern in Concurrent Java 1.5+

I am trying to develop active object pattern in concurrent Java using java.util.concurrent classes. I describe it using a Client and a Server. A sample Server is as: class Server implements Runnable ...
0
votes
4answers
703 views

Strategy in java to clean up / remove unused map elements

I'm implementing a "manager" in my web app that can be called to set and get which web site context the current thread is in (we white label our site so the web site context represents which site ...