Proposal: To be able to define whether an ObjectOutputStream is Compressed
Serialization/Externalization allows you to exchange java objects in a simple way. It is also possible to internally compress the Output Stream (ObjectOutputStream), but it is very cumbersome and messes up the code.
So what I would like to have is a flag in ObjectOutputStream that indicates that compression shall be performed from now on.
What do you think ?

