Schrift
[thread]6221[/thread]

Zeitverzögerung in For Schleife: Abarbeitung mit Zeitverzögerung

Leser: 1


<< >> 5 Einträge, 1 Seite
Rambo
 2004-04-28 17:55
#81893 #81893
User since
2003-08-14
803 Artikel
BenutzerIn

user image
Hallo,
ich habe volgenden Code
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use strict;
use Win32;
use Win32::Process;

my $pix_path = "F:\\PIXX_TOOLS\\IA_TEST\\1600018";
my $appexecutable = "D:\\WIN32APP\\JRE_142_03\\BIN\\JAVA.EXE";
my $ProcessObj = ();
my @wks_name = qw(PC1 PC2 PC3 PC4 PC5
                );

for my $wks_name2 (@wks_name) {
      my $appparameters = $appexecutable . ' -cp ' .
              $pix_path . ';'.
                          $pix_path . '\\CLASSES;'.
                          $pix_path . '\\ETC;'.
                          $pix_path . '\\CONFIG;'.
                          $pix_path . '\\HELP;'.
                          $pix_path . '\\LIB\\appfw.jar' .';'.
                          $pix_path . '\\LIB\\pixx.jar' .';'.
                          $pix_path . '\\LIB\\pixxclient.jar' . ';'.
                          $pix_path . '\\LIB\\pixxcsresources.jar' . ';'.
                          $pix_path . '\\LIB\\servertester.jar' . ';'.
                          $pix_path . '\\LIB\\orbix2000_6_1.jar' .
              " com.lsy.pixx.server.test.Tester $wks_name2 tester.cfg";
                         
     Win32::Process::Create($ProcessObj,
                         $appexecutable,
                         $appparameters,
                         1,
                         NORMAL_PRIORITY_CLASS,
                         '.')|| die ErrorReport();
                         
                         #$ProcessObj->Suspend();
                         #$ProcessObj->Resume();
                         #$ProcessObj->Wait(INFINITE);
                         }

jetzt möchte ich das in der for schleife eine
zeitverzögerung dirn ist.
heist pc1 startet
5 sec. warten
pc2 startet
5 sec. warten
usw.
wie kann  ich das machen?

danke schon
fürti rambo
ptk
 2004-04-28 18:18
#81894 #81894
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
sleep(5) an einer geeigneten Stelle einfuegen.
Rambo
 2004-04-28 18:56
#81895 #81895
User since
2003-08-14
803 Artikel
BenutzerIn

user image
hatte ich mir schon gedacht nur habe ich noch nicht gefunden
wo die stelle ist :-)

gruss rambo
steinwolf
 2004-04-28 19:00
#81896 #81896
User since
2003-08-04
367 Artikel
BenutzerIn
[default_avatar]
na direkt hinter
Code: (dl )
for my $wks_name2 (@wks_name) { 



btw volgend -> folgend

mfg stein\n\n

<!--EDIT|steinwolf|1083164499-->
"Did you know? You can use your old motor oil to fertilize your lawn." - Blinkster - Professionelles EDV Forum
Rambo
 2004-04-28 19:17
#81897 #81897
User since
2003-08-14
803 Artikel
BenutzerIn

user image
oh peinlich volgend mit v :-( gelobe besserung :-)
danke für den Code
funzt

fürti rambo
<< >> 5 Einträge, 1 Seite



View all threads created 2004-04-28 17:55.