public void setPollerSize(int pollerSize) { endpoint.setPollerSize(pollerSize); }
public int getPollerSize() { return endpoint.getPollerSize(); }
+ public void setPollerThreadCount(int pollerThreadCount) { endpoint.setPollerThreadCount(pollerThreadCount); }
+ public int getPollerThreadCount() { return endpoint.getPollerThreadCount(); }
+
public int getSendfileSize() { return endpoint.getSendfileSize(); }
public void setSendfileSize(int sendfileSize) { endpoint.setSendfileSize(sendfileSize); }
+ public void setSendfileThreadCount(int sendfileThreadCount) { endpoint.setSendfileThreadCount(sendfileThreadCount); }
+ public int getSendfileThreadCount() { return endpoint.getSendfileThreadCount(); }
+
protected int socketBuffer = 9000;
public int getSocketBuffer() { return socketBuffer; }
public void setSocketBuffer(int socketBuffer) { this.socketBuffer = socketBuffer; }
</subsection>
<subsection name="Coyote">
<changelog>
+ <fix><bug>45074</bug>Add configuration parameters in Http11AprProtocol</fix>
<update><rev>644858</rev><br/>
Inproper curly brackets cause NIO/SendFile to fail. Workaround prior to this version, set
useSendFile="false" in the Connector element.