Merge pull request #338 from xxDark/read-timeout

Make initial read timeout configurable
This commit is contained in:
Andrew Steinborn
2020-08-10 23:05:52 -04:00
committed by GitHub
5 changed files with 31 additions and 1 deletions

View File

@@ -150,4 +150,11 @@ public interface ProxyConfig {
* @return read timeout (in milliseconds)
*/
int getReadTimeout();
/**
* Get how long this proxy will wait until performing an initial read timeout.
*
* @return read timeout (in milliseconds)
*/
int getInitialReadTimeout();
}