2003-02-12 02:00:12 +00:00
<Type Name= "ThreadNotify" FullName= "Gtk.ThreadNotify" >
2003-02-15 03:08:25 +00:00
<TypeSignature Language= "C#" Value= "public class ThreadNotify" Maintainer= "auto" />
2003-02-12 02:00:12 +00:00
<AssemblyInfo >
<AssemblyName > gtk-sharp</AssemblyName>
2003-12-24 01:35:30 +00:00
<AssemblyPublicKey >
</AssemblyPublicKey>
2003-02-12 02:00:12 +00:00
<AssemblyVersion > 0.0.0.0</AssemblyVersion>
2003-10-28 00:48:23 +00:00
<AssemblyCulture > neutral</AssemblyCulture>
2003-02-12 02:00:12 +00:00
<Attributes />
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<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>
2003-02-12 02:00:12 +00:00
<Docs >
2004-04-21 20:46:56 +00:00
<summary > Multi-threaded integration with Gtk support.</summary>
<remarks >
<para > The ThreadNotify class is used to invoke methods in the Gtk+ thread. Since Gtk is not a thread-safe toolkit, only a single thread at a time might be making calls into Gtk.</para>
<para > Typically applications will be executing the main Gtk+ main loop and when threads are done processing work, they invoke <see cref= "M:Gtk.ThreadNotify.WakeupMain()" /> to invoke a method on the main Gtk+ thread.</para>
<example >
<code lang= "C#" >
using Gtk;
class Demo {
2004-06-19 18:25:02 +00:00
static ThreadNotify notify;
2004-04-21 20:46:56 +00:00
static void Main ()
{
Application.Init ();
notify = new ThreadNotify (new ReadyEvent (ready));
Application.Run ();
}
static void ready ()
{
// Update the GUI with computation values.
}
static void ThreadRoutine ()
{
LargeComputation ();
notify.WakeupMain ();
}
2004-06-19 18:25:02 +00:00
static void LargeComputation ()
{
// lots of processing here
}
2004-04-21 20:46:56 +00:00
}
</code>
</example>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
<Base >
<BaseTypeName > System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes />
<Members >
<Member MemberName= "WakeupMain" >
<MemberSignature Language= "C#" Value= "public void WakeupMain ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2004-04-21 20:46:56 +00:00
<summary > Wakeup the main thread, and invoke delegate.</summary>
<remarks > This methods wakes up the Gtk+ main thread and executes the delegate that was specified at construction time in the Gtk+ thread. </remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public ThreadNotify (Gtk.ReadyEvent re);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "re" Type= "Gtk.ReadyEvent" />
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2004-04-21 20:46:56 +00:00
<summary > ThreadNotify constructor</summary>
<param name= "re" > A ReadyEvent delegate.</param>
<returns > Constructed object.</returns>
<remarks > The method referenced by the delegate will be invoked on the Gtk+ mainloop whenever any thread invokes the <see cref= "M:Gtk.ThreadNotify.WakeupMain ()" /> method.</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
2003-10-28 00:48:23 +00:00
<Member MemberName= "Close" >
<MemberSignature Language= "C#" Value= "public void Close ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
<summary > To be added</summary>
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "Finalize" >
<MemberSignature Language= "C#" Value= "protected override void Finalize ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
<summary > To be added</summary>
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "Dispose" >
<MemberSignature Language= "C#" Value= "protected virtual void Dispose (bool disposing);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "disposing" Type= "System.Boolean" />
</Parameters>
<Docs >
<summary > To be added</summary>
<param name= "disposing" > a <see cref= "T:System.Boolean" /> </param>
<remarks > To be added</remarks>
</Docs>
</Member>
2003-02-12 02:00:12 +00:00
</Members>
2003-09-17 21:56:59 +00:00
</Type>