this.requestHandlerClassName, true, this.getClass().getClassLoader()).newInstance();
requestHandler.initialize(this.requestHandlerResName, this.getServer(), this.log, this.clock);
// Instantiate the AgentSession with an optional thread pool
this.agentSession = this.numberOfThreads > 1
? new SnmpAgentSession(requestHandler, peer, this.numberOfThreads)
: new SnmpAgentSession(requestHandler, peer);
}