Package com.netscape.cms.request
Class RequestScheduler
- java.lang.Object
-
- com.netscape.cms.request.RequestScheduler
-
- All Implemented Interfaces:
IRequestScheduler
public class RequestScheduler extends java.lang.Object implements IRequestScheduler
This class represents a request scheduler that prioritizes the threads based on the request processing order. The request that enters the request queue first should be processed first.- Version:
- $Revision$, $Date$
-
-
Constructor Summary
Constructors Constructor Description RequestScheduler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrequestIn(IRequest r)Request entered the request queue processing.voidrequestOut(IRequest r)Request exited the request queue processing.
-
-
-
Method Detail
-
requestIn
public void requestIn(IRequest r)
Request entered the request queue processing.- Specified by:
requestInin interfaceIRequestScheduler- Parameters:
r- request
-
requestOut
public void requestOut(IRequest r)
Request exited the request queue processing.- Specified by:
requestOutin interfaceIRequestScheduler- Parameters:
r- request
-
-