1 20 21 22 23 24 25 package org.snmp4j; 26 27 38 public class DefaultTimeoutModel implements TimeoutModel { 39 40 public DefaultTimeoutModel() { 41 } 42 43 public long getRetryTimeout(int retryCount, 44 int totalNumberOfRetries, long targetTimeout) { 45 return targetTimeout; 46 } 47 48 public long getRequestTimeout(int totalNumberOfRetries, long targetTimeout) { 49 return (totalNumberOfRetries+1)*targetTimeout; 50 } 51 } 52 | Popular Tags |