how multiple threads invoke singleton object's method and work on them?

JavaMultithreading

Java Problem Overview


I have multiple threads running which access singleton object and call its method and pass objects in it. In the method I do some calculations only on recieved object. I have heard that there would not be any problem in this case cause it is stateless and it is free for all.

My question is how it is free for all? I want to know how multiple threads can call the shared method in their own thread without overwriting the passed objects of other threads? Please explain in terms of memory allocation wise and at stack level.

class Singleton class{

	//no shared class or object variables and only one copy of this Singleton object exists.

	Object someMethod(Object o){
		//do some calculation or logic on the object o and return some string result
	}

}

Java Solutions


Solution 1 - Java

I think you have to distinguish between what you've already stored in memory and code execution.

In a Singleton Object you have:

  • Fields: They are stored in memory. They can be shared amongst multiple threads and you have no guarantee they will keep consistent (unless you make them synchronized).
  • Methods to be called: They can be called from more than one thread. Each execution is independent and thread safe, unless they access some shared field improperly.

Now coming to your question: if you share your singleton object among multiple threads and access it concurrently, every single thread will execute Singleton object's portion of code, wrapped in its own execution.

Also if you write a Thread.currentThread().getId(); which basically returns the thread ID you're executing into singleton's methods, you will obtain different ids, because different threads are executing their own method stack. Being stateless means you've no fields into the singleton to be shared amongst them!

A word on Stateless and Stateful

Stateless means that the bean hasn't got any modifiable field to share. That means you have only methods or/and static stuff in your object, so you can use them anywhere and will always return you same result. You don't have to worry about synchronizing the access to the field.

That's a basic example about stateless, let's suppose you have a class that only performs the sum operation:

public class StatelessClass{

	public int sum(int a, int b){
		return a+b;
	}

}

In the same way, you can declare it as a abstract class (no instantiable itself) and make its methods static, which means you don't need any instance of it to call its methods:

public abstract class StatelessClass{

	/**
	*	I only sum objects
	*/
	public static int sum(int a, int b){
		return a+b;
	}

}

Then you can use it as StatelessClass.sum(1,1);, this actually would be very similar to have a Singleton object itself, with the difference that in the Singleton you have a unique instance shared in the application.

In the same way, having a field which is injected and provides access to a service neither is considered to alter the state of the object:

public class StatelessServiceClass{

	private Service service;

	public int sum(int a, int b){
		return service.sum(a,b);
	}
	
	public void setService(Service serv){
		this.service=serv;
	}

}

However, having a field which is modifiable makes the Object stateful:

public class StatefulClass{

	//This fields make the object STATEFUL
	private int totalSum = 0;

	public int sum(int a, int b){
		int sum = a + b;
		totalSum = totalSum + sum;
        if (totalSum > 100)
            System.out.println("This thread "+Thread.currentThread().getId()+
                +" got it!");
		return sum;
	}

}

As sum can be accessed by multiple threads at the same time, you should guarantee that totalSum is accessed in a synchronized way. The printed sentence is not guaranteed to be true unless you do it.

All of this is also properly explained in this answer's Threadsafety piece by @BalusC.

Solution 2 - Java

Every thread has its own copy of the Object o and so even if multiple threads call the method at the same time, each method call of Thread will have its own stack allocated and the logic will apply there.

Why is it Thread Safe?

Thread Stacks are private to them and are by default thread safe as no other thread can enter in others stack.

NOTE: You can say that this Singleton of yours is Thread safe but not that the application is Thread safe as it also depends on whether the Object o being passed is itself thread safe or not. But as far as safety of Singleton is concerned it is thread safe.

Solution 3 - Java

You can think about it in "pizza terms". You went to pizza cafe, and couple of other guys entered with you as well. Each one placed his order and then sat to his own table. Pizza boxes to be arrived then and each of you start eating his own meal.

Here, the cafe is a singleton, pizza boys are CPU cores, you and other customers are threads, orders and pizza are input and output data respectively, table is a piece of memory.

As you can see, each thread is served with his own piece of memory so CPU can distinguish your data and don't mix up. As you asked about stack, it's not a significant player here because each thread has it's own stack (as a part of your memory chunk).

Solution 4 - Java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
        
    public class MainClass {
    	public final static int MAX_THREAD = 20;
    	public MainClass() {
    		// TODO Auto-generated constructor stub
    	}
    
    	public static void main(String[] args) {
    		
    		List<Singleton> singletonList = new MainClass().createSingletonObjects();
    		singletonList = Collections.synchronizedList(singletonList); 
    		
    		int index = 0;
    		for (int i = 0; i < MAX_THREAD; i++) {
    			
    			Thread thread1 = new Thread(new MyThread(singletonList,index), "Thread"+i);
    			thread1.start();
    			index++;
    		if (index == singletonList.size()) {
    		index = 0;	
    		}
    		
    		}
    		
    	}
    	
    public synchronized List<Singleton> createSingletonObjects(){
    	List<Singleton> listSingleton = new ArrayList<Singleton>();
    		listSingleton.add(MySingleton1.getInstance());
    		listSingleton.add(MySingleton2.getInstance());
    		listSingleton.add(MySingleton3.getInstance());
    		listSingleton.add(MySingleton4.getInstance());
    		listSingleton.add(MySingleton5.getInstance());
    		
    		return listSingleton;
    		
    	}
    	
    }


public class MySingleton1 extends Singleton{
	private static Singleton mySingleton;
	private MySingleton1() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public static Singleton getInstance() {
		if (mySingleton == null) {
			mySingleton = new MySingleton1();
			return mySingleton;
		}
		return mySingleton;
	}


public class MySingleton2 extends Singleton{
	private static Singleton mySingleton;
	private MySingleton2() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public static Singleton getInstance() {
		if (mySingleton == null) {
			mySingleton = new MySingleton2();
			return mySingleton;
		}
		return mySingleton;
	}






	
}


public class MySingleton3 extends Singleton{
	private static Singleton mySingleton;
	private MySingleton3() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public static Singleton getInstance() {
		if (mySingleton == null) {
			mySingleton = new MySingleton3();
			return mySingleton;
		}
		return mySingleton;
	}






	
}


public class MySingleton4 extends Singleton{
	private static Singleton mySingleton;
	private MySingleton4() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public static Singleton getInstance() {
		if (mySingleton == null) {
			mySingleton = new MySingleton4();
			return mySingleton;
		}
		return mySingleton;
	}






	
}


public class MySingleton5 extends Singleton{
	private static Singleton mySingleton;
	private MySingleton5() {
		super();
		// TODO Auto-generated constructor stub
	}
	
	public static Singleton getInstance() {
		if (mySingleton == null) {
			mySingleton = new MySingleton5();
			return mySingleton;
		}
		return mySingleton;
	}






	
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbeinghumanView Question on Stackoverflow
Solution 1 - JavaAritzView Answer on Stackoverflow
Solution 2 - JavaNarendra PathaiView Answer on Stackoverflow
Solution 3 - JavaYury SchkatulaView Answer on Stackoverflow
Solution 4 - JavaNirajView Answer on Stackoverflow