Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Gets or sets the number of threads that the generator can use to concurrently process rules.
Пространство имен: Microsoft.SqlServer.Management.Nmo
Сборка: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Синтаксис
'Декларация
Public Property ThreadPoolSize As Integer
public int ThreadPoolSize { get; set; }
public:
property int ThreadPoolSize {
int get ();
void set (int value);
}
/** @property */
public int get_ThreadPoolSize ()
/** @property */
public void set_ThreadPoolSize (int value)
public function get ThreadPoolSize () : int
public function set ThreadPoolSize (value : int)
Значение свойства
An Int32 object that specifies the maximum number of generator threads.
Замечания
The thread pool size determines the amount of work that the generator can perform in parallel, and affects the overall speed of the Notification Services system.
The generator thread pool size cannot be customized in Notification Services Standard Edition.
The number of threads allocated to the generator thread pool cannot exceed 25 threads per processor.
When the thread pool size is 0 (zero), Notification Services uses the maximum thread pool size reported by System.Threading.ThreadPool.GetMaxThreads(System.Int32,System.Int32).
Пример
The following examples show how to define a generator and add it to an application:
// Define generator for application
Generator generator = new Generator(myApplication, "Generator");
generator.SystemName = notificationServicesHost;
generator.ThreadPoolSize = 0;
myApplication.Generator = generator;
' Define generator for application
Dim generator As Generator = New Generator( _
myApplication, "Generator")
generator.SystemName = notificationServicesHost
generator.ThreadPoolSize = 0
myApplication.Generator = generator
Синхронизация потоков
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
Generator Class
Generator Members
Microsoft.SqlServer.Management.Nmo Namespace
Другие ресурсы
Указание параметров генератора
ThreadPoolSize Element for Generator (ADF)