Condividi tramite


Metodo IHttpServer::IncrementThreadCount

Incrementa il numero di thread per il pool di thread.

Sintassi

virtual VOID IncrementThreadCount(  
   VOID  
) = 0;  

Parametri

Questo metodo non accetta parametri.

Valore restituito

VOID.

Commenti

Il IncrementThreadCount metodo aumenta il numero di thread disponibili per il pool di thread da un singolo thread. Il conteggio non supererà il limite massimo per il pool di thread di 256 thread.

Nota

IncrementThreadCount non aumenta effettivamente il numero di thread in uso; solo il numero di thread è interessato.

Quando si sviluppa un modulo HTTP che esegue operazioni che richiedono molto tempo per l'elaborazione, il modulo HTTP potrebbe chiamare IncrementThreadCount per aumentare i thread disponibili per il pool di thread mentre il modulo esegue le operazioni a esecuzione prolungata. Al termine del modulo, chiamerebbe IIHttpServer::D ecrementThreadCount per ripristinare il numero di thread.

Esempio

Nell'esempio di codice seguente viene illustrato come creare un modulo HTTP che chiama IncrementThreadCount per aumentare il numero di thread per il pool di thread e quindi sospendi per 30 secondi. Il modulo chiama DecrementThreadCount quindi per ripristinare il numero di thread e le uscite.

#define _WINSOCKAPI_
#include <windows.h>
#include <sal.h>
#include <httpserv.h>

// Create a pointer for the global server interface.
IHttpServer * g_pHttpServer = NULL;

// Create the module class.
class MyHttpModule : public CHttpModule
{
public:
    REQUEST_NOTIFICATION_STATUS
    OnBeginRequest(
        IN IHttpContext * pHttpContext,
        IN IHttpEventProvider * pProvider
    )
    {
        UNREFERENCED_PARAMETER( pHttpContext );
        UNREFERENCED_PARAMETER( pProvider );

        // Increment the thread count.
        g_pHttpServer->IncrementThreadCount();

        // Sleep for 30 seconds.
        Sleep(30 * 1000);

        // Decrement the thread count.
        g_pHttpServer->DecrementThreadCount();

        // Return processing to the pipeline.
        return RQ_NOTIFICATION_CONTINUE;
    }
};

// Create the module's class factory.
class MyHttpModuleFactory : public IHttpModuleFactory
{
public:
    HRESULT
    GetHttpModule(
        OUT CHttpModule ** ppModule, 
        IN IModuleAllocator * pAllocator
    )
    {
        UNREFERENCED_PARAMETER( pAllocator );

        // Create a new instance.
        MyHttpModule * pModule = new MyHttpModule;

        // Test for an error.
        if (!pModule)
        {
            // Return an error if the factory cannot create the instance.
            return HRESULT_FROM_WIN32( ERROR_NOT_ENOUGH_MEMORY );
        }
        else
        {
            // Return a pointer to the module.
            *ppModule = pModule;
            pModule = NULL;
            // Return a success status.
            return S_OK;
        }            
    }

    void Terminate()
    {
        // Remove the class from memory.
        delete this;
    }
};

// Create the module's exported registration function.
HRESULT
__stdcall
RegisterModule(
    DWORD dwServerVersion,
    IHttpModuleRegistrationInfo * pModuleInfo,
    IHttpServer * pGlobalInfo
)
{
    UNREFERENCED_PARAMETER( dwServerVersion );

    // Store the pointer for the global server interface.
    g_pHttpServer = pGlobalInfo;

   // Set the request notifications and exit.
    return pModuleInfo->SetRequestNotifications(
        new MyHttpModuleFactory,
        RQ_BEGIN_REQUEST,
        0
    );
}

Il modulo deve esportare la funzione RegisterModule . È possibile esportare questa funzione creando un file di definizione del modulo (con estensione def) per il progetto oppure è possibile compilare il modulo usando l'opzione /EXPORT:RegisterModule . Per altre informazioni, vedere Procedura dettagliata: Creazione di un modulo HTTP Request-Level tramite codice nativo.

Facoltativamente, è possibile compilare il codice usando la __stdcall (/Gz) convenzione di chiamata anziché dichiarare in modo esplicito la convenzione di chiamata per ogni funzione.

Requisiti

Tipo Descrizione
Client - IIS 7.0 in Windows Vista
- IIS 7.5 in Windows 7
- IIS 8.0 in Windows 8
- IIS 10.0 in Windows 10
Server - IIS 7.0 in Windows Server 2008
- IIS 7.5 in Windows Server 2008 R2
- IIS 8.0 in Windows Server 2012
- IIS 8.5 in Windows Server 2012 R2
- IIS 10.0 in Windows Server 2016
Prodotto - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0
- IIS Express 7.5, IIS Express 8.0, IIS Express 10.0
Intestazione Httpserv.h

Vedere anche

Interfaccia IHttpServer
Metodo IHttpServer::D ecrementThreadCount