COM Stateless Vs Stateful
COM
2
Posts
2
Posters
0
Views
1
Watching
-
Hi Guys, Can somebody tell me whether COM objects are stateless or stateful ? AS far as i understand, State of an object is defined by the data member it contains and COM objects can have data members. BIG_MG
COM objects are stateful. The very notion of object in OOP is a black box with some state, which is observed and manipulated using its public operations. An object which is not stateful, is not an object. :) -- So let's just walk from place to place, as long as we don't talk face to face.