home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _f98cad19ef1bdda5beffebc5276ab496 < prev    next >
Text File  |  2000-03-23  |  4KB  |  106 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Win32::Event - Use Win32 event objects from Perl</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Win32::Event - Use Win32 event objects from Perl</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#methods">Methods</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#author">AUTHOR</A></LI>
  31. </UL>
  32. <!-- INDEX END -->
  33.  
  34. <HR>
  35. <P>
  36. <H1><A NAME="name">NAME</A></H1>
  37. <P>Win32::Event - Use Win32 event objects from Perl</P>
  38. <P>
  39. <HR>
  40. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  41. <UL>
  42. <LI>Windows</LI>
  43. </UL>
  44. <HR>
  45. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  46. <PRE>
  47.         use Win32::Event;</PRE>
  48. <PRE>
  49.         $event = Win32::Event->new($manual,$initial,$name);
  50.         $event->wait();</PRE>
  51. <P>
  52. <HR>
  53. <H1><A NAME="description">DESCRIPTION</A></H1>
  54. <P>This module allows access to the Win32 event objects.  The <A HREF="#item_wait"><CODE>wait</CODE></A>
  55. method and <CODE>wait_all</CODE> & <CODE>wait_any</CODE> functions are inherited from the
  56. <A HREF="#win32::ipc">Win32::IPC</A> module.</P>
  57. <P>
  58. <H2><A NAME="methods">Methods</A></H2>
  59. <DL>
  60. <DT><STRONG><A NAME="item_new">$event = Win32::Event->new([$manual, [$initial, [$name]]])</A></STRONG><BR>
  61. <DD>
  62. Constructor for a new event object.  If <CODE>$manual</CODE> is true, you must
  63. manually reset the event after it is signalled (the default is false).
  64. If <CODE>$initial</CODE> is true, the initial state of the object is signalled
  65. (default false).  If <CODE>$name</CODE> is omitted, creates an unnamed event
  66. object.
  67. <P>If <CODE>$name</CODE> signifies an existing event object, then <CODE>$manual</CODE> and
  68. <CODE>$initial</CODE> are ignored and the object is opened.</P>
  69. <P></P>
  70. <DT><STRONG><A NAME="item_open">$event = Win32::Event-><CODE>open($name)</CODE></A></STRONG><BR>
  71. <DD>
  72. Constructor for opening an existing event object.
  73. <P></P>
  74. <DT><STRONG><A NAME="item_pulse">$event->pulse</A></STRONG><BR>
  75. <DD>
  76. Signal the <CODE>$event</CODE> and then immediately reset it.  If <CODE>$event</CODE> is a
  77. manual-reset event, releases all threads currently blocking on it.  If
  78. it's an auto-reset event, releases just one thread.
  79. <P>If no threads are waiting, just resets the event.</P>
  80. <P></P>
  81. <DT><STRONG><A NAME="item_reset">$event->reset</A></STRONG><BR>
  82. <DD>
  83. Reset the <CODE>$event</CODE> to nonsignalled.
  84. <P></P>
  85. <DT><STRONG><A NAME="item_set">$event->set</A></STRONG><BR>
  86. <DD>
  87. Set the <CODE>$event</CODE> to signalled.
  88. <P></P>
  89. <DT><STRONG><A NAME="item_wait">$event-><CODE>wait([$timeout])</CODE></A></STRONG><BR>
  90. <DD>
  91. Wait for <CODE>$event</CODE> to be signalled.  See <A HREF="#win32::ipc">Win32::IPC</A>.
  92. <P></P></DL>
  93. <P>
  94. <HR>
  95. <H1><A NAME="author">AUTHOR</A></H1>
  96. <P>Christopher J. Madsen <<EM><A HREF="mailto:chris_madsen@geocities.com">chris_madsen@geocities.com</A></EM>></P>
  97. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  98. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  99. <STRONG><P CLASS=block> Win32::Event - Use Win32 event objects from Perl</P></STRONG>
  100. </TD></TR>
  101. </TABLE>
  102.  
  103. </BODY>
  104.  
  105. </HTML>
  106.