WorkflowQueuingService Classe
Definizione
Attenzione
The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*
Fornisce i servizi per la gestione degli oggetti WorkflowQueue.Provides the services for management of WorkflowQueue objects.
public ref class WorkflowQueuingService
public class WorkflowQueuingService
[System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public class WorkflowQueuingService
type WorkflowQueuingService = class
[<System.Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")>]
type WorkflowQueuingService = class
Public Class WorkflowQueuingService
- Ereditarietà
-
WorkflowQueuingService
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato un metodo, denominato CreateQueue
, che inizializza un oggetto WorkflowQueuingService chiamando il metodo ActivityExecutionContext.GetService.The following code example demonstrates a method, named CreateQueue
, that initializes a WorkflowQueuingService object by calling the ActivityExecutionContext.GetService method. Il codice quindi utilizza il metodo Exists per determinare se esiste una classe WorkflowQueue con un nome specificato.The code then uses the Exists method to determine if a WorkflowQueue with a specified name exists. Se non esiste, il codice chiama il metodo CreateWorkflowQueue, altrimenti chiama il metodo GetWorkflowQueue.If it does not exist, the code calls the CreateWorkflowQueue method; if it does the code calls the GetWorkflowQueue method.
Questo esempio di codice fa parte dell'esempio SDK File Watcher Activity nel file FileSystemEvent.cs.This code example is part of the File Watcher Activity SDK Sample from the FileSystemEvent.cs file. Per ulteriori informazioni, vedere attività Watcher del file System.For more information, see File System Watcher Activity.
private WorkflowQueue CreateQueue(ActivityExecutionContext context)
{
Console.WriteLine("CreateQueue");
WorkflowQueuingService qService = context.GetService<WorkflowQueuingService>();
if (!qService.Exists(this.QueueName))
{
qService.CreateWorkflowQueue(this.QueueName, true);
}
return qService.GetWorkflowQueue(this.QueueName);
}
Private Function CreateQueue(ByVal context As ActivityExecutionContext) As WorkflowQueue
Console.WriteLine("CreateQueue")
Dim qService As WorkflowQueuingService = context.GetService(Of WorkflowQueuingService)()
If Not qService.Exists(Me.queueName) Then
qService.CreateWorkflowQueue(Me.queueName, True)
End If
Return qService.GetWorkflowQueue(Me.QueueName)
End Function
Commenti
Nota
In questo materiale vengono descritti tipi e spazi dei nomi obsoleti.This material discusses types and namespaces that are obsolete. Per altre informazioni, vedere Deprecated Types in Windows Workflow Foundation 4.5 (Tipi deprecati in Windows Workflow Foundation 4.5).For more information, see Deprecated Types in Windows Workflow Foundation 4.5.
WorkflowQueuingService fornisce i metodi che è possibile utilizzare per gestire le code del flusso di lavoro associate a un'istanza del flusso di lavoro.WorkflowQueuingService provides methods that you can use to manage the workflow queues associated with a workflow instance.
Campi
PendingMessagesProperty |
Contiene gli elementi non utilizzati nelle code del flusso di lavoro associate a questo WorkflowQueuingService.Contains the unconsumed items in the workflow queues associated with this WorkflowQueuingService. |
Metodi
CreateWorkflowQueue(IComparable, Boolean) |
Crea un oggetto WorkflowQueue utilizzando il nome e l'ambito transazionale specificati.Creates a WorkflowQueue by using the specified name and transactional scope. |
DeleteWorkflowQueue(IComparable) |
Elimina l'oggetto WorkflowQueue specificato.Deletes the specified WorkflowQueue. |
Equals(Object) |
Determina se l'oggetto specificato è uguale all'oggetto corrente.Determines whether the specified object is equal to the current object. (Ereditato da Object) |
Exists(IComparable) |
Verifica l'esistenza dell'oggetto WorkflowQueue specificato.Tests for the existence of the specified WorkflowQueue. |
GetHashCode() |
Funge da funzione hash predefinita.Serves as the default hash function. (Ereditato da Object) |
GetType() |
Ottiene l'oggetto Type dell'istanza corrente.Gets the Type of the current instance. (Ereditato da Object) |
GetWorkflowQueue(IComparable) |
Recupera l'oggetto WorkflowQueue specificato.Retrieves the specified WorkflowQueue. |
MemberwiseClone() |
Crea una copia superficiale dell'oggetto Object corrente.Creates a shallow copy of the current Object. (Ereditato da Object) |
ToString() |
Restituisce una stringa che rappresenta l'oggetto corrente.Returns a string that represents the current object. (Ereditato da Object) |