Queues a method for execution, and specifies an object containing data to be used by the method. The method executes when a thread pool thread becomes available.
Assembly: mscorlib (in mscorlib.dll)
Public Shared Function QueueUserWorkItem ( _
callBack As WaitCallback, _
state As Object _
) As Booleanpublic static bool QueueUserWorkItem(
WaitCallback callBack,
Object state
)public:
static bool QueueUserWorkItem(
WaitCallback^ callBack,
Object^ state
)static member QueueUserWorkItem :
callBack:WaitCallback *
state:Object -> bool
Parameters
- callBack
- Type: System.Threading
. . :: . WaitCallback
A WaitCallback representing the method to execute.
- state
- Type: System
. . :: . Object
An object containing data to be used by the method.
Return Value
Type: Systemtrue if the method is successfully queued; NotSupportedException is thrown if the work item could not be queued.
| Exception | Condition |
|---|---|
| NotSupportedException | The common language runtime (CLR) is hosted, and the host does not support this action. |
| ArgumentNullException | callBack is |
If the callback method requires complex data, you can define a class to contain the data.
Note |
|---|
Visual Basic users can omit the WaitCallback constructor, and simply use the AddressOf operator when passing the callback method to QueueUserWorkItem. Visual Basic automatically calls the correct delegate constructor. |
Version Information
In the .NET Framework version 2.0, the Thread
The following example shows how to create an object that contains task information. It also demonstrates how to pass that object to a task that is queued for execution by the thread pool.
' This example shows how to create an object containing task
' information, and pass that object to a task queued for
' execution by the thread pool.
Imports System
Imports System.Threading
' TaskInfo holds state information for a task that will be
' executed by a ThreadPool thread.
Public Class TaskInfo
' State information for the task. These members
' can be implemented as read-only properties, read/write
' properties with validation, and so on, as required.
Public Boilerplate As String
Public Value As Integer
' Public constructor provides an easy way to supply all
' the information needed for the task.
Public Sub New(text As String, number As Integer)
Boilerplate = text
Value = number
End Sub
End Class
Public Class Example
<MTAThread> _
Public Shared Sub Main()
' Create an object containing the information needed
' for the task.
Dim ti As New TaskInfo("This report displays the number {0}.", 42)
' Queue the task and data.
ThreadPool.QueueUserWorkItem( _
New WaitCallback(AddressOf ThreadProc), ti)
Console.WriteLine("Main thread does some work, then sleeps.")
' If you comment out the Sleep, the main thread exits before
' the ThreadPool task has a chance to run. ThreadPool uses
' background threads, which do not keep the application
' running. (This is a simple example of a race condition.)
Thread.Sleep(1000)
Console.WriteLine("Main thread exits.")
End Sub
' The thread procedure performs the independent task, in this case
' formatting and printing a very simple report.
'
Shared Sub ThreadProc(stateInfo As Object)
Dim ti As TaskInfo = CType(stateInfo, TaskInfo)
Console.WriteLine(ti.Boilerplate, ti.Value)
End Sub
End Class
// This example shows how to create an object containing task
// information, and pass that object to a task queued for
// execution by the thread pool.
using System;
using System.Threading;
// TaskInfo holds state information for a task that will be
// executed by a ThreadPool thread.
public class TaskInfo
{
// State information for the task. These members
// can be implemented as read-only properties, read/write
// properties with validation, and so on, as required.
public string Boilerplate;
public int Value;
// Public constructor provides an easy way to supply all
// the information needed for the task.
public TaskInfo(string text, int number) {
Boilerplate = text;
Value = number;
}
}
public class Example {
public static void Main()
{
// Create an object containing the information needed
// for the task.
TaskInfo ti = new TaskInfo("This report displays the number {0}.", 42);
// Queue the task and data.
ThreadPool.QueueUserWorkItem(new WaitCallback(ThreadProc), ti);
Console.WriteLine("Main thread does some work, then sleeps.");
// If you comment out the Sleep, the main thread exits before
// the ThreadPool task has a chance to run. ThreadPool uses
// background threads, which do not keep the application
// running. (This is a simple example of a race condition.)
Thread.Sleep(1000);
Console.WriteLine("Main thread exits.");
}
// The thread procedure performs the independent task, in this case
// formatting and printing a very simple report.
//
static void ThreadProc(Object stateInfo)
{
TaskInfo ti = (TaskInfo) stateInfo;
Console.WriteLine(ti.Boilerplate, ti.Value);
}
}
// This example shows how to create an Object* containing task
// information, and pass that Object* to a task queued for
// execution by the thread pool.
using namespace System;
using namespace System::Threading;
// TaskInfo holds state information for a task that will be
// executed by a ThreadPool thread.
public ref class TaskInfo
{
public:
// State information for the task. These members
// can be implemented as read-only properties, read/write
// properties with validation, and so on, as required.
String^ Boilerplate;
int Value;
// Public constructor provides an easy way to supply all
// the information needed for the task.
TaskInfo( String^ text, int number )
{
Boilerplate = text;
Value = number;
}
};
public ref struct Example
{
public:
// The thread procedure performs the independent task, in this case
// formatting and printing a very simple report.
//
static void ThreadProc( Object^ stateInfo )
{
TaskInfo^ ti = dynamic_cast<TaskInfo^>(stateInfo);
Console::WriteLine( ti->Boilerplate, ti->Value );
}
};
void main()
{
// Create an object containing the information needed
// for the task.
TaskInfo^ ti = gcnew TaskInfo( "This report displays the number {0}.",42 );
// Queue the task and data.
ThreadPool::QueueUserWorkItem( gcnew WaitCallback( Example::ThreadProc ), ti );
Console::WriteLine( "Main thread does some work, then sleeps." );
// If you comment out the Sleep, the main thread exits before
// the ThreadPool task has a chance to run. ThreadPool uses
// background threads, which do not keep the application
// running. (This is a simple example of a race condition.)
Thread::Sleep( 1000 );
Console::WriteLine( "Main thread exits." );
}
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note