I have a fairly trivial static variable question. I'm building out a solution that loosely follows the path or RMI. On my server, I have a ComputeEngine class that will execute 'Tasks' (class instances with an 'execute' method). However, the ComputeEngine will contain a global variable that will need to be accessed by different tasks, each executing in its own thread. What's the best way to give access to this? I want to keep everything as loosely coupled as possible. The shared global static variable in my ComputeEngine class will be a List. Should I have a getter for this static variable? I will have a read/write lock in my ComputeEngine class to give access to my global List. This too will be static and will need to be shared. I'm looking for best practice on how to provide access to a global static variable in a class.
|
|
If you want to decouple it, the best way is to pass a callback object when you create the
This way the Task itself doesn't have to assume anything about who created it and how the list is stored. And in your
If you want to change the storage of |
|||||||||
|
By best practices, you shouldn't have such variables.
No, you shouldn't provide such getter. Just |
|||||
|
|
Nooooooooooooooooooooooooooooooooooooooooooooooooooo!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Static mutables are Bad, and dressing it up as Singletons just make matters worse. Pass objects through constructors as necessary. And give objects sensible behaviour. In the case of RMI, by default you are loading untrusted code from wherever directed by the client (top tip, when using RMI, use |
|||||||
|
and only implement the getter if anyone actually needs it
other than that, having a global static variable is frowned upon... |
|||
|
|
|
I have several recommendations for you:
|
|||
|
|
|
Going after @biziclop answer but with other separation) You can separate your code in next parts.
Than,
than, you should create your objects with some magic constructor injection) |
|||
|
|
|
Everyone seems to be asserting you're using the If you require in earnest a
Then have your task enter this portion of the job by accessing the singleton and calling the method on it which is managed with a lock. Never pass a collection which into a concurrent environment, it will only cause you problems. You can always pass around an immutable "wrapper" though if it's really suitable, by using |
||||
|
|

