Thread Thread in Tk-Anwendung
(5 answers)
Opened by dimpflmoser at 2010-08-23 15:03 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 #!/usr/bin/perl use strict; use warnings; use threads; use Tk; my $thread = threads->create( \&search_file ); $thread->detach; my $mw = tkinit(); $mw->Label( -text => 'hallo' )->pack; MainLoop; sub search_file { for my $counter ( 1 .. 10 ) { print $counter,"\n"; sleep 1; } } Wichtig ist, dass threads *vor* Tk geladen wird und die Threads *vor* der GUI erstellt werden. 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/ |