memchan - Create and manipulate memory channels
SYNOPSIS
package require Tcl
package require memchan
|
Memory channels created by memchan provide two read-only options which can be queried via the standard fconfigure command. These are
As the channels generated by memchan grow as necessary they are always writable. This means that a writable fileevent-handler will fire continuously.
The channels are also readable if they contain more than zero bytes and the seek location is not and the end of the channel. Under these conditions a readable fileevent-handler will fire continuously.
Note that writing to such a channel usually occurs at the end, thus
supressing readable events. This also means that users have to take
care to seek the channel to a location before the end before
trying to read data back.
SEE ALSO
fifo, fifo2, null, zero, random
KEYWORDS
memchan, chunk, in-memory channel, channel, i/o
COPYRIGHT
Copyright (c) 1996-2003 Andreas Kupries <andreas_kupries@users.sourceforge.net>