Interface IRequestScheduler

All Known Implementing Classes:
RequestScheduler

public interface IRequestScheduler
This is an interface to 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$
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Request entered the request queue processing.
    void
    Request exited the request queue processing.
  • Method Details

    • requestIn

      void requestIn(Request r)
      Request entered the request queue processing.
      Parameters:
      r - request
    • requestOut

      void requestOut(Request r)
      Request exited the request queue processing.
      Parameters:
      r - request