"A container serializes calls to each session bean instance. Most containers will support many instances of a session bean executing concurrently; however, each instance sees only a serialized sequence of
method calls. Therefore, a session bean does not have to be coded as reentrant."
My questions
1. What is the meaning of serializing calls here in simple words ?
-
What is the meaning of "Serializing calls to bean instances" ? (3 messages)
- Posted by: rajarsi sarkar
- Posted on: October 27 2003 12:21 EST
Threaded Messages (3)
- What is the meaning of "Serializing calls to bean instances" ? by Michael Gendelman on October 27 2003 13:36 EST
- What is the meaning of "Serializing calls to bean instances" ? by kavita kavita on October 28 2003 03:28 EST
- What is the meaning of "Serializing calls to bean instances" ? by Gal Binyamini on October 28 2003 07:17 EST
- What is the meaning of "Serializing calls to bean instances" ? by kavita kavita on October 28 2003 03:28 EST
-
What is the meaning of "Serializing calls to bean instances" ?[ Go to top ]
- Posted by: Michael Gendelman
- Posted on: October 27 2003 13:36 EST
- in response to rajarsi sarkar
Only processes one call at a time -
What is the meaning of "Serializing calls to bean instances" ?[ Go to top ]
- Posted by: kavita kavita
- Posted on: October 28 2003 03:28 EST
- in response to Michael Gendelman
I don't think serializing means "one at a time".Serializing means converting the bean to byte stream and sending it as a bit-blob. -
What is the meaning of "Serializing calls to bean instances" ?[ Go to top ]
- Posted by: Gal Binyamini
- Posted on: October 28 2003 07:17 EST
- in response to kavita kavita
Serializing in this context means making calls to the bean one thread at a time, so the requests execute serially rather than concurrently.
Java also has a concept of object Serialization which serializes object graphs into byte streams, but that has nothing to do with the original question.
Gal