Thread sleep(); verständnissproblem... (8 answers)
Opened by J-jayz-Z at 2005-04-19 14:36

renee
 2005-04-19 14:55
#53958 #53958
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
aus perldoc perlvar:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
       HANDLE->autoflush(EXPR)
$OUTPUT_AUTOFLUSH
$| If set to nonzero, forces a flush right away and
after every write or print on the currently
selected output channel. Default is 0 (regardless
of whether the channel is really buffered by the
system or not; $| tells you only whether you've
asked Perl explicitly to flush after each write).
STDOUT will typically be line buffered if output
is to the terminal and block buffered otherwise.
Setting this variable is useful primarily when you
are outputting to a pipe or socket, such as when
you are running a Perl program under rsh and want
to see the output as it's happening. This has no
effect on input buffering. See "getc" in perlfunc
for that. (Mnemonic: when you want your pipes to
be piping hot.)
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread sleep(); verständnissproblem...