A block or method is said to be 'synchronized' if entry to it is controlled by the Java `synchronized` keyword. This causes access to it to be restricted to a single thread at a time: when concurrent accesses occur, they are sequentialized in an unspecified order.
0
votes
4answers
79 views
Multi-threads writing same thing to the same file?
I alway thought concurrently threads writing to one same file needs synchronization.
What happend when multi-threads writing same thing to the same file without synchronization? I imagined the ...
1
vote
1answer
20 views
JAXB and synchronization
I have a class as such:
import java.util.Vector;
import javax.xml.bind.annotation.*;
@XmlRootElement(name="task-list")
@XmlAccessorType(XmlAccessType.FIELD)
public class TaskList {
...
6
votes
3answers
68 views
Allowing one method call at a time to a category method ios (@synchronized)
I have a UIViewController and a Category for adding methods to the UIViewController. There is a method in the category:
@implementation UIViewController (AlertAnimationsAndModalViews)
...
3
votes
3answers
55 views
Synchronize Protection Not Working for Dual Threads
Below is my stripped down java code for review. I have several subclasses, and when execParallel() is called, a new thread is launched. This thread and the default thread must both execute ...
1
vote
1answer
28 views
Android : How to synchronized resource in right way
My application sometimes should read and write to file. And this work might happen in multithread, so I should synchronize those resource. Here is my code :
// write to file
FileOutputStream fos = ...
1
vote
4answers
89 views
Any chance of deadlock with only one sync point?
I have two running threads calling few methods (5 or 6) where I specified synchronized block inside and use only one object to lock it. Is there any chance of deadlock with having only one sync point? ...
0
votes
4answers
67 views
synchronized in thread concepts of java
When I try to execute the piece of code, I am getting output like 12221121212121221212. When I declare the method as synchronized, it should not allow the other thread to take over the control
...
1
vote
5answers
59 views
Why is this not synchronized correctly?
Hi all I have this code:
public class ThreadTester {
public static void main(String args[]) {
Counter c = new Counter();
for (int i = 0; i < 10; i++) {
MyThread a = ...
-2
votes
3answers
34 views
Synchronized Non-Final List [duplicate]
Ok so as I understand it, its best to create a final static Object that I use for synchronization.
However, I also read that if the object reference doesn't change, then it won't have concurrency ...
0
votes
2answers
47 views
Lock object which fields are actually being read
We have such situation
class Pole extends Thread
{
JButton pole;
Plansza p;
Pole neighbours[] = new Pole[4];
public Pole(Plansza p)
{
this.p = p;
pole = new ...
1
vote
1answer
58 views
Synchronize data between many threads
I'm new to the synchronization topic and I couldn't find clear information anywhere about using wait(), notify(), and notifyAll() methods while trying to access to synchronized object. For exmaple if ...
-1
votes
1answer
20 views
does synchronization gives Sequential execution in java? if yes, then why do we need threads?
I am a novice to java. Plz help me the with the below query
Using multithreading we can achieve parallel processing and hence very less time to execute any method.
Where as using synchronized, we ...
0
votes
1answer
33 views
Releasing BufferedReader.readLine() while locked with synchronized method
currently i have a code like the following one:
public class CtrlServer {
private ServerSocket ss;
private Map<Integer, Socket> s;
private Map<Integer, PrintWriter> out;
...
0
votes
3answers
79 views
performance of synchronized method vs block
I've a class where all methods need to be synchronized (no static method). One of those method will be called once every 50 ms.
I'm wondering where putting the synchronized keyword to have the ...
-1
votes
1answer
26 views
Warranty of storing variable value before next command in java
I am curious if immediately after value assign command like this:
a = 5;
there is a warranty that the new value has been stored into variable? And if this is different for primitive and other data ...
1
vote
3answers
41 views
Does synchronized affect object members?
If I call a object synchronized, can I access objects inside that object as if they were synchronized? Or can I only access the data types?
1
vote
6answers
70 views
Is Synchronized Blocking?
In java, I have 2 threads in my client, one is controlling the network flow, the other one is processing the messages, draws game etc. What I am trying to do is when a packet comes, the network thread ...
0
votes
1answer
30 views
Synchronized block in stateless EJB
Is it okay to have a synchronized block in a stateless EJB in EJB 3.1?
The synchronized block is for renewing a connection on connection errors.
2
votes
3answers
60 views
Best Practices Concerning Method Locking
I have a method whom access myst be synchronized allowing only one thread at once to go though it. Here is my current implementation:
private Boolean m_NoNeedToProceed;
private Object ...
1
vote
1answer
51 views
Synchronized methods - how does this work?
I recently saw one example below. I am not able to understand how does the main and passenger thread can remain in synchronized block at once?
public class bus
{
public static void ...
0
votes
2answers
65 views
Synchronized Block inside the run method
Does using a synchronized block inside the run method makes any sense? I thought it does, as long as I'm using a relevant lock, not the instance of Runnable containing this run method. Reading the ...
0
votes
1answer
78 views
iOS Thread safety - Complete a block of code before thread switches
I'm looking for a way to make sure that some lines of code get always executed together (before the system may switch the thread).
@synchronized does not work for this as far as I know since it will ...
-1
votes
1answer
35 views
Wait for transition to end [duplicate]
How can I wait for a JavaFx transition to end?
I have an interactive sorting algorithm.
Every number is represented by a rectangle.
When two numbers are swapped the rectangles must be swap.
...
0
votes
1answer
77 views
Blocking queue in Java
I am reading a book titled "Beginning Algorithms", that has examples in Java. In the chapter about queues, it explains the "blocking queue", and ... even when my background is C# and not Java, ...
-1
votes
1answer
41 views
Why does my notify() not work?
None of my notifyAll() methods appear to be working.
Lucy is suppose to wait until Bob arrives and then release.
Bob is suppose to wait for acknowledgement Lucy and then release.
Neither of these ...
1
vote
0answers
24 views
Acquire the signal and simultaneously display visual stimuli in C++
I have to acquire a signal from an external device and simultaneously display a visual stimuli an LCD screen.
The signal is sampled by a BCI device at 512 Hz and it is sent to PC with a Bluetooth ...
0
votes
0answers
32 views
Synchronized specifier hinders transfer of variable data
I recently assembled a program to obtain data serially through the usb port and transfer it to COSM. The data obtained serially through the serialevent method wasn't getting passed to the update ...
16
votes
3answers
326 views
Is synchronized inherited in Java?
I have superclass Point and a synchronized method draw(). Will the subclasses of Point inherit synchronized if I override method draw() in them or I have to always write it?
-1
votes
1answer
59 views
Is it enough to synchronize a method for static variables? [closed]
For this code, is it good enough to synchronize the method? Thanks a lot.
class{
private static VariableManager = new VariableManager();
...
static class VariableManager{
private ...
1
vote
1answer
53 views
Synchronize code inside a servlet filter
I am having a servlet filter and within that I need to make some code as thread safe.
I am giving the abstract code:
doFilter() {
{
......
if (condition1) {
TestClass testObj = ...
0
votes
0answers
95 views
AtomicInteger Vs synchronized int variable in java : performance difference
After going throught following question
Can synchronized blocks be faster than Atomics?
i wrote a simple program to compare the performance difference of AomicInteger and synchronized block ...
1
vote
1answer
61 views
Why can't I directly access (and lock) the implicit lock that Objects use for synchronized block
rephrased for clarity
I would like to be able to mix the use of the synchronized block with more explicit locking via calling lock and release methods directly when appropriate. Thus allowing me the ...
0
votes
2answers
51 views
Execution of new thread inside a synchronized block
If i create a new thread inside a synchronized block, will the block remain locked till the thread execution is also complete?
If not, then till when would it remain locked?
String sLine;
...
0
votes
1answer
72 views
synchronized lock and separate threads: Android
I have a callback function in which i receive a string.
This string is to be passed to a separate thread for processing since the processing takes time.
Also, since multiple callbacks can come ...
0
votes
1answer
21 views
accessing a nearly-readonly-shared-list Asynchronously
public class PlanetInfo {
String planetName="";
int a;
int b;
int c;
PlanetInfo(planetname){
planetName = planetname;
if(planetName.equals("earth")){
...
0
votes
1answer
73 views
Thread-safe HashMap access
I have a class which wraps up a map. The map is read/written by an Add() and isUpwardTrade() methods as indicated below.
Do you see any thread safety issues by synchronizing the whole methods?
How ...
2
votes
3answers
114 views
java synchronized keyword needed on primitive getter / setter method?
I read some java code, and found these functions:
synchronized void setConnected(boolean connected){
this.connected = connected;
}
synchronized boolean isConnected(){
return connected;
}
I ...
-4
votes
1answer
64 views
What is more efficient - synchronization on a method or a block [duplicate]
Can someone please tell me whether its more efficient to synchronize on a method or a block in Java?
Just thinking about this, when you synchronize on something it affects the performance so I would ...
0
votes
5answers
125 views
Java - Two threads communicating via wait()/notify() but threads are alternating on with thread gets lock first
The desired output of this programme is:
Ping
Pong
Ping
Pong
Ping
Pong
Yet it alternates between that and
Pong
Ping
etc.
The thing is, I create the Ping thread and run it first. So I am not sure ...
3
votes
2answers
51 views
Synchronized collection
Since c is already synchronzied collection, and it's thus thread safe. But why do we have to use synchronized(c) again for the iteration? Really confused. Thanks.
" It is imperative that the user ...
3
votes
1answer
90 views
Synchronized hashmap read-only access in Java
In Java, there are 3 threads that want to access (read-only) an immutable hashmap to do something. Is SynchronizedMap class below the fastest solution for that purpose? If not, then what would be ...
0
votes
2answers
79 views
Increment sleep/wait time until required
I'm not very good in multi-threading, this might be a basic question. But i have'nt been able to find an answer.
Scenario:
Lets say I have an event listener which is fired by something. Every time ...
3
votes
1answer
108 views
java - alternatives for volatile array
From other questions, I learned that the elements of a volatile array are not volatile. Only the reference itself is volatile.
volatile[] int data;
Thread A: data[4] = 457;
Thread B: ...
2
votes
3answers
61 views
Java threads summing single value
In Java, why in the code below synchronized can be commented? Because addition happens to be nearly atomic and thus the probability of error or failure is too small?
public class AddInParallel {
...
0
votes
3answers
58 views
Volatile arraylist not acting as expected
I am writing a multi-threaded platform game. One thread does the painting job, the other thread, runs the game logic. I have an array-list that both threads need to access at the same time. I am ...
3
votes
1answer
65 views
MATLAB synchronized code
What is the equivalent to Java's "synchronized" in MATLAB?
Suppose I have two timers, and they both can modify a variable (i.e. matrix) M. If they fire at the same time, will they both try to ...
6
votes
2answers
122 views
What primitive is used to implement the synchronized keyword?
When we use synchronized keyword in java, which synchronization primitive is used exactly? Lock , Semaphore , Monitor , Mutex ?
EDIT : How JVM implements the lock at the native level ?
2
votes
2answers
61 views
Synchronization with threads
I have a two part question...
I have a class with a function in it that can only be accessed by any one thread at a given time. Making this a synchronized function or a synchronized block still ...
1
vote
3answers
48 views
Monitors and synchronized blocks in Java (it appears two threads own a monitor at the same time)
I'm trying to understand the synchronized() blocks in the program I wrote at the end of this post.
There are two threads (o and k) that use a shared lock object as a monitor for wait/notify.
o ...
1
vote
1answer
79 views
Why is there no synchronized keyword used in Java lock implementations?
synchronized is used in Java to deal with mutex sort of things. However the implementations of Lock interface like ReentrantLock in Java does not use this keyword. All the code looks just normal code. ...






