Description
return new ConnectionLimitingSettings( totalLimit == -1 ? 0 : totalLimit, limitIn == -1 ? 0 : limitIn, limitOut == -1 ? 0 : limitOut, openTimeout,
If any of the 3 variables is negative, control would have returned in the if block above.
return new ConnectionLimitingSettings( totalLimit == -1 ? 0 : totalLimit, limitIn == -1 ? 0 : limitIn, limitOut == -1 ? 0 : limitOut, openTimeout,
If any of the 3 variables is negative, control would have returned in the if block above.