Ryujinx-GtkSharp/doc/en/GLib/Timeout.xml
Mike Kestner 4e8879d852 flush whitespace
svn path=/trunk/gtk-sharp/; revision=75847
2007-04-17 18:26:16 +00:00

69 lines
3.0 KiB
XML

<Type Name="Timeout" FullName="GLib.Timeout">
<TypeSignature Language="C#" Value="public class Timeout" Maintainer="auto" />
<AssemblyInfo>
<AssemblyName>glib-sharp</AssemblyName>
<AssemblyPublicKey>
</AssemblyPublicKey>
<AssemblyVersion>2.10.0.0</AssemblyVersion>
</AssemblyInfo>
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<Docs>
<summary>Allows the installation of Timeout Handlers on the GLib main loop.
It's in a way very similar to a System.Windows.Forms.Timer class.
You can use timeouts to invoke routines at specified intervals of time.
The diferance between GLib.Timeout and System.Windows.Forms.Timer is that Timeouts are always invoked on the thread that owns the Gtk mainloop
</summary>
<remarks>
<para>Use the <see cref="M:GLib.Timeout.Add" /> method to install timeout handlers into the mainloop.</para>
<example>
<code lang="C#">
void StartClock ()
{
GLib.Timeout.Add(1000, new GLib.TimeoutHandler(update_status));
}
bool update_status ()
{
time_label.Text=DateTime.Now.ToString ();
//returning true means that the timeout routine should be invoked
//again after the timeout period expires. Returning false would
//terminate the timeout.
return true;
}
</code>
</example>
</remarks>
</Docs>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Members>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public static uint Add (uint interval, GLib.TimeoutHandler hndlr);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.UInt32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="interval" Type="System.UInt32" />
<Parameter Name="hndlr" Type="GLib.TimeoutHandler" />
</Parameters>
<Docs>
<summary>Adds a <see cref="T:GLib.TimeoutHandler" /> delegate to the mainloop. </summary>
<param name="interval">the interval in milliseconds between invocations of <paramref name="hndlr" />.</param>
<param name="hndlr">a delegate of type <see cref="T:GLib.TimeoutHandler" /> to invoke every <paramref name="interval" />.</param>
<returns>an id representing the event source of the installed timeout handler.</returns>
<remarks>
<para>
The delegate is invoked after the time period specified by <paramref name="interval" />. The delegate is invoked repeatedly until it returns <see langword="false" />.
</para>
<para>
Invocation of the delegate may be delayed by other event processing, so this mechanism cannot be depended on for accurate timing. The interval to the next timeout is calculated at completion of the preceding timeout. There is no attempt made to "catch up" if an invocation is delayed.
</para>
</remarks>
</Docs>
</Member>
</Members>
</Type>