2
votes
1answer
135 views

Using static class methods in multi-threaded programming

I am building a webcrawler which is using two classes: a downloader class and an analyzer class. Due to my design of the program I had some methods which I outsourced to a static class named utils ...
0
votes
1answer
218 views

Qt library - thread safety of static members functions

Qt's documentation states that all QDateTime functions are reentrant which in Qt terms it means that if you create new object of QDateTime in another thread you can safely work with it. But are the ...
0
votes
1answer
536 views

Static Properties with Session in ASP.NET

There are several posts about this online but none seem to provide a definitive answer. My question is this. If I have static properties declared that solely get/set Session values is that thread safe ...
4
votes
2answers
1k views

Are Static classes thread safe

I have gone through msdn where it is written that all the static classes are thread safe. Well that article is meant for version 1.1... http://msdn.microsoft.com/en-us/library/d11h6832(v=vs.71).aspx ...
5
votes
4answers
363 views

Is this way of creating static instance thread safe?

I have the following sample C++ code: class Factory { public: static Factory& createInstance() { static Factory fac; return fac; } private: Factory() { ...
0
votes
1answer
259 views

Can IWindsorContainer be instantiated through a static method?

I'm still groping around a bit with Castle Windsor. At the moment all my pages which need an IWindsorContainer instantiate one themselves through a property: private IWindsorContainer ...
1
vote
3answers
1k views

Does the lock(objlocker) make that object thread safe app wide? And are static members automatically thread safe?

When you lock an object is that object locked throughout the whole application? For Example, this snippet from C# 3.0 in a Nutshell Section 19.6.1 "Thread Safety and .NET Framework Types": static ...