Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > f448deafa1de20c56618e7ac9c6ef5d7 > files > 137

Falcon-doc-0.9.6.6-1.fc14.noarch.rpm

<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <title>Falcon Feathers - The Standard Modules Reference. - Group "Waitings"</title>
   <link href="faldoc.css" rel="stylesheet" type="text/css"/>
   <link href="tabs.css" rel="stylesheet" type="text/css"/>
</head>
<body class="faldoc_body">
<div class="navitop">
   <div class="tabs">
      <ul>
         <li><a href="./index.html"><span>Main</span></a></li>
         <li><a href="./modules.html"><span>Modules</span></a></li>
         <li><a href="./pages.html"><span>Related pages</span></a></li>
         <li><a href="./groups.html"><span>Groups</span></a></li>
         <li><a href="./classes.html"><span>Classes</span></a></li>
         <li><a href="./objects.html"><span>Objects</span></a></li>
         <li><a href="./functions.html"><span>All functions</span></a></li>
         <li><a href="./enum.html"><span>Enumerations</span></a></li>
         
      </ul>
   </div>
</div>
<hr/>

<h1 class="faldoc_title">Group "Waitings"</h1>
<p class="faldoc_brief">Wating functions and methods. </p>

   <p class="faldoc_text"><p class="faldoc_text">All the functions and methods meant to wait for any Synchronization Structure (or more in general, for any waitable object) share a common semantic which has the following characteristics: </p>
<ul>
<li>Waiting functions can wait on one or more waitable objects to become available for acquisition. </li><li>Waiting functions have an optional timeout value. If it's not specified, or if it's less than zero, then the wait functions will wait forever that one of the waited items can be acquired. If it's zero, they will check if one of the waited items is currently available, and return immediately (eventually acquiring the item). If it's greater than zero, they will wait for the specified amount of seconds and fractions, and return nil if the waited items are not ready to be acquired by the expiration time. </li><li>A succesful wait consists in the acquisition of the waitable item. Acquisition may not be exclusive; some waitable items may be acquired by more threads. </li><li>In case of a failed wait, nil is returned. </li><li> All the waiting functions in this group respect the VM Interruption protocol; they may raise an InterruptedError if thir thread receives a <a href="./class_Thread.html#stop">Thread.stop</a> request or a VM interruption request generated by other modules or embedding applications. </li>
</ul>
</p>
   
      <h2 class="faldoc_title">Contents</h2>
   



   <table class="faldoc_list">
   
   <tr><td class="faldoc_funcname"><a href="./class_Thread.html#vwait">Thread.vwait</a></td><td class="faldoc_funcbrief">Wait for one or more synchronization strucures to become available. </td></tr>
   
   <tr><td class="faldoc_funcname"><a href="./class_Thread.html#wait">Thread.wait</a></td><td class="faldoc_funcbrief">Wait for one or more synchronization strucures to become available. </td></tr>
   
   <tr><td class="faldoc_funcname"><a href="./class_Threading.html#vwait">Threading.vwait</a></td><td class="faldoc_funcbrief">Wait for one or more synchronization strucures to become available. </td></tr>
   
   <tr><td class="faldoc_funcname"><a href="./class_Threading.html#wait">Threading.wait</a></td><td class="faldoc_funcbrief">Wait for one or more synchronization strucures to become available. </td></tr>
   
   </table>



<hr/>
<div class="navibottom">
   <center>
      <a href="./index.html">Main</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./modules.html">Modules</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./pages.html">Related pages</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./groups.html">Groups</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./classes.html">Classes</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./objects.html">Objects</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./functions.html">All functions</a>&nbsp;&nbsp;-&nbsp;&nbsp;<a href="./enum.html">Enumerations</a>
   </center>
</div>
</div>
<div class="faldoc_signature">Made with <a href="http://www.falconpl.org">faldoc 2.2.0</div>
</body>
</html>