* Called from RequestProcessor when the request has been handled.
* The request is removed from the active request table.
*/
synchronized void finish (ServerRequest request)
{
final ByteArrayKey oid = request.objectIdAsByteArrayKey();
activeRequestTable.remove (oid);
notifyAll();
}