472,796 Members | 1,381 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,796 software developers and data experts.

Only static (Shared) types are thread safe ?!

dee
OleDbCommand class like many .NET classes has the following description in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their own
stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee
Nov 19 '05 #1
11 2172
There is overhead in making a method thread safe. Microsoft typically
will not add the overhead to an instance (non static) method, because
90% of the time the overhead will be unneeded. This leaves it up to
the developer to add thread safety only when they need it.

Microsoft will typically make static methods threadsafe, because there
is a good chance the Type will be used in an MT environment.

I have a couple articles on the topic, let me know if they help or if
they can be improved:
Statics And Thread Safety (Parts I and II)
http://odetocode.com/Articles/313.aspx
http://odetocode.com/Articles/314.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 31 Aug 2005 08:55:09 -0400, "dee" <de*@home.net> wrote:
OleDbCommand class like many .NET classes has the following description in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their own
stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee


Nov 19 '05 #2
dee wrote:
OleDbCommand class like many .NET classes has the following description in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their own
stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee


I think this is a language problem here. I believe the phrase:

"Any public static (Shared in Visual Basic) members of this type are
safe for multithreaded operations"

is meant to be read

"Any public static (Shared in Visual Basic) memebers that this type
exposes are safe for multithreaded operations"

rather than

"Any public static (Shared in Visual Basic) members defined to be of
this type are safe for multithreaded operations"

It's quite ambiguous phrasing, but I believe that what I have stated
(the second quote) is the intended meaning.

Does this clear things up?

Damien

Nov 19 '05 #3
dee
Thanks Scott nice articles.
I guess my problem is with the meaning of the line from help file:
"Any public static (Shared in Visual Basic) members of this type are safe
for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."

When they day "member" then mean either a method or a property?
"instance member" could be a method that uses a static proptery? If so, then
they should be handled like other static methods since thier user does
doesnt know how they are implemented.

Thanks for your time.
Dee
"Scott Allen" <sc***@nospam.odetocode.com> wrote in message
news:jm********************************@4ax.com...
There is overhead in making a method thread safe. Microsoft typically
will not add the overhead to an instance (non static) method, because
90% of the time the overhead will be unneeded. This leaves it up to
the developer to add thread safety only when they need it.

Microsoft will typically make static methods threadsafe, because there
is a good chance the Type will be used in an MT environment.

I have a couple articles on the topic, let me know if they help or if
they can be improved:
Statics And Thread Safety (Parts I and II)
http://odetocode.com/Articles/313.aspx
http://odetocode.com/Articles/314.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 31 Aug 2005 08:55:09 -0400, "dee" <de*@home.net> wrote:
OleDbCommand class like many .NET classes has the following description in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe
for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their
own
stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is
that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee

Nov 19 '05 #4
dee
Yes Damian Thanks.
In addition, why would an intrinsic method be unsafe? cuz it might access
static data? Then why not thread safe those as well?
"Damien" <Da*******************@hotmail.com> wrote in message
news:11*********************@g43g2000cwa.googlegro ups.com...
dee wrote:
OleDbCommand class like many .NET classes has the following description
in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe
for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their
own
stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is
that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee


I think this is a language problem here. I believe the phrase:

"Any public static (Shared in Visual Basic) members of this type are
safe for multithreaded operations"

is meant to be read

"Any public static (Shared in Visual Basic) memebers that this type
exposes are safe for multithreaded operations"

rather than

"Any public static (Shared in Visual Basic) members defined to be of
this type are safe for multithreaded operations"

It's quite ambiguous phrasing, but I believe that what I have stated
(the second quote) is the intended meaning.

Does this clear things up?

Damien

Nov 19 '05 #5
dee
OleDbCommand class doesnt have any static members anyway
what is the point of mentioning static members are thread safe ??

"dee" <de*@home.net> wrote in message
news:OW**************@TK2MSFTNGP12.phx.gbl...
Yes Damian Thanks.
In addition, why would an intrinsic method be unsafe? cuz it might access
static data? Then why not thread safe those as well?
"Damien" <Da*******************@hotmail.com> wrote in message
news:11*********************@g43g2000cwa.googlegro ups.com...
dee wrote:
OleDbCommand class like many .NET classes has the following description
in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe
for
multithreaded operations. Any instance members are not guaranteed to be
thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their
own
stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is
that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee


I think this is a language problem here. I believe the phrase:

"Any public static (Shared in Visual Basic) members of this type are
safe for multithreaded operations"

is meant to be read

"Any public static (Shared in Visual Basic) memebers that this type
exposes are safe for multithreaded operations"

rather than

"Any public static (Shared in Visual Basic) members defined to be of
this type are safe for multithreaded operations"

It's quite ambiguous phrasing, but I believe that what I have stated
(the second quote) is the intended meaning.

Does this clear things up?

Damien


Nov 19 '05 #6
when the docs refer to members thread safety, they are refering to
accessing that property from different threads.

when they say statics are thread safe, but instance are not, they mean, that
the static can be access from any thread safefully (as locking as been
implementd), but instance members can only be safely accessed from the
creating thread.

if an non-thread safe instance member is to be accessed from multiple
threads, you must add code to support this.

-- bruce (sqlwork.com)
"dee" <de*@home.net> wrote in message
news:uH**************@TK2MSFTNGP15.phx.gbl...
OleDbCommand class like many .NET classes has the following description in
its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe
for multithreaded operations. Any instance members are not guaranteed to
be thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their
own stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is
that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee

Nov 19 '05 #7
dee
Thanks Bruce

"Bruce Barker" <br******************@safeco.com> wrote in message
news:ut**************@TK2MSFTNGP14.phx.gbl...
when the docs refer to members thread safety, they are refering to
accessing that property from different threads.

when they say statics are thread safe, but instance are not, they mean,
that the static can be access from any thread safefully (as locking as
been implementd), but instance members can only be safely accessed from
the creating thread.

if an non-thread safe instance member is to be accessed from multiple
threads, you must add code to support this.

-- bruce (sqlwork.com)
"dee" <de*@home.net> wrote in message
news:uH**************@TK2MSFTNGP15.phx.gbl...
OleDbCommand class like many .NET classes has the following description
in its help file:

"Thread Safety
Any public static (Shared in Visual Basic) members of this type are safe
for multithreaded operations. Any instance members are not guaranteed to
be thread safe."
I have 2 questions:

1. I thought dynamic variables are thread-safe since threads have their
own stack and static data had to be synchronized. However, many many .NET
classes say ONLY static members of thier type are thread safe. Why is
that?
2. Do we still have to synchronize access to this shared data?

3. If only static members are thread-safe why all the examples use non
static data?

Thanks.
Dee


Nov 19 '05 #8
dee wrote:
OleDbCommand class doesnt have any static members anyway
what is the point of mentioning static members are thread safe ??

It's just a boilerplate statement that they've liberally sprinkled
throughout the documentation. I wouldn't try to read too much into it.

In the general case (when you're not passing instances around between
threads), it's only the static members that you would be concerned
about w.r.t thread safety, since those are the only ones which multiple
threads might conceivably call (on the same object, in this case the
type). Once you start passing instances between threads is when you
start having to think about implementing mutual exclusion (unless the
documentation, in that case, states that all members are thread safe).

HTH,

Damien

Nov 19 '05 #9
On Wed, 31 Aug 2005 11:10:15 -0400, "dee" <de*@home.net> wrote:

When they day "member" then mean either a method or a property?
"instance member" could be a method that uses a static proptery? If so, then
they should be handled like other static methods since thier user does
doesnt know how they are implemented.

Thanks for your time.
Dee


Yes, members would include both properties and methods.

--
Scott
http://www.OdeToCode.com/blogs/scott/
Nov 19 '05 #10
dee
Thanks Damien

"Damien" <Da*******************@hotmail.com> wrote in message
news:11********************@g49g2000cwa.googlegrou ps.com...
dee wrote:
OleDbCommand class doesnt have any static members anyway
what is the point of mentioning static members are thread safe ??

It's just a boilerplate statement that they've liberally sprinkled
throughout the documentation. I wouldn't try to read too much into it.

In the general case (when you're not passing instances around between
threads), it's only the static members that you would be concerned
about w.r.t thread safety, since those are the only ones which multiple
threads might conceivably call (on the same object, in this case the
type). Once you start passing instances between threads is when you
start having to think about implementing mutual exclusion (unless the
documentation, in that case, states that all members are thread safe).

HTH,

Damien

Nov 19 '05 #11
dee
Thanks Allen.

"Scott Allen" <sc***@nospam.odetocode.com> wrote in message
news:lq********************************@4ax.com...
On Wed, 31 Aug 2005 11:10:15 -0400, "dee" <de*@home.net> wrote:

When they day "member" then mean either a method or a property?
"instance member" could be a method that uses a static proptery? If so,
then
they should be handled like other static methods since thier user does
doesnt know how they are implemented.

Thanks for your time.
Dee


Yes, members would include both properties and methods.

--
Scott
http://www.OdeToCode.com/blogs/scott/

Nov 19 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
by: Steve - DND | last post by:
We're currently doing some tests to determine the performance of static vs non-static functions, and we're coming up with some odd(in our opinion) results. We used a very simple setup. One class...
25
by: Sahil Malik [MVP] | last post by:
So here's a rather simple question. Say in an ASP.NET application, I wish to share common constants as static variables in global.asax (I know there's web.config bla bla .. but lets just say I...
2
by: S | last post by:
Hi there, I'm building an application that makes heavy use of centralized static methods (and variables) and would just appreciate hearing someone grade my understanding of the concept. In...
15
by: Laser Lu | last post by:
I was often noted by Thread Safety declarations when I was reading .NET Framework Class Library documents in MSDN. The declaration is usually described as 'Any public static (Shared in Visual...
12
by: Peter K | last post by:
Say I have this class public class Simple { private string name; public string Name { get { return name; } set { name = value; }
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.