Re: Java thread safety

2009-06-16 Thread Kenton Varda
The Java implementation does not contain any mutable singletons, so as long
as you are accessing different objects, there is no need to worry about
thread-safety.  So, yes, multiple threads may call parseFrom() at the same
time as long as they are parsing from different streams.

On Mon, Jun 15, 2009 at 6:28 PM, Wayne wayne.mene...@gmail.com wrote:


 In the Java Generated code, there are functions like ParseFrom
 (CodedInputStream ...) that create protocol buffers messages from a
 file or other buffer. Can I call these directly from multiple
 different threads or should I use a wrapper with the synchronized
 keyword?

 Thanks,
 Wayne

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Protocol Buffers group.
To post to this group, send email to protobuf@googlegroups.com
To unsubscribe from this group, send email to 
protobuf+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/protobuf?hl=en
-~--~~~~--~~--~--~---



Java thread safety

2009-06-15 Thread Wayne

In the Java Generated code, there are functions like ParseFrom
(CodedInputStream ...) that create protocol buffers messages from a
file or other buffer. Can I call these directly from multiple
different threads or should I use a wrapper with the synchronized
keyword?

Thanks,
Wayne

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Protocol Buffers group.
To post to this group, send email to protobuf@googlegroups.com
To unsubscribe from this group, send email to 
protobuf+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/protobuf?hl=en
-~--~~~~--~~--~--~---