The Trunk: Network-ar.76.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Network-ar.76.mcz

commits-2
Andreas Raab uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-ar.76.mcz

==================== Summary ====================

Name: Network-ar.76
Author: ar
Time: 24 July 2010, 3:13:49.41 pm
UUID: b1521559-931f-0340-8ca4-cd846a3ed667
Ancestors: Network-ar.75

Add long missing SocketStream>>destroy method.

=============== Diff against Network-ar.75 ===============

Item was added:
+ ----- Method: SocketStream>>destroy (in category 'initialize-release') -----
+ destroy
+ "Destroy the receiver and its underlying socket. Does not attempt to flush the output buffers. For a graceful close use SocketStream>>close instead."
+
+ socket ifNotNil:[socket destroy]!