C# 클래스 Opc.Ua.ServerBase.RequestQueue

Manages a queue of requests.
상속: IDisposable
파일 보기 프로젝트 열기: OPCFoundation/UA-.NET

공개 메소드들

메소드 설명
Dispose ( ) : void

Frees any unmanaged resources.

RequestQueue ( ServerBase server, int minThreadCount, int maxThreadCount, int maxRequestCount ) : System

Initializes a new instance of the RequestQueue class.

ScheduleIncomingRequest ( IEndpointIncomingRequest request ) : void

Schedules an incoming request.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

An overrideable version of the Dispose.

비공개 메소드들

메소드 설명
OnProcessRequestQueue ( object state ) : void

Processes the requests in the request queue.

메소드 상세

Dispose() 공개 메소드

Frees any unmanaged resources.
public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

An overrideable version of the Dispose.
protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

RequestQueue() 공개 메소드

Initializes a new instance of the RequestQueue class.
public RequestQueue ( ServerBase server, int minThreadCount, int maxThreadCount, int maxRequestCount ) : System
server ServerBase The server.
minThreadCount int The minimum number of threads in the pool.
maxThreadCount int The maximum number of threads in the pool.
maxRequestCount int The maximum number of requests that will placed in the queue.
리턴 System

ScheduleIncomingRequest() 공개 메소드

Schedules an incoming request.
public ScheduleIncomingRequest ( IEndpointIncomingRequest request ) : void
request IEndpointIncomingRequest The request.
리턴 void