* Create a new Retransmitter associated with the given sender address
* @param sender the address from which retransmissions are expected or to which retransmissions are sent
* @param cmd the retransmission callback reference
*/
public Retransmitter(Address sender, RetransmitCommand cmd) {
init(sender, cmd, new TimeScheduler(SUSPEND_TIMEOUT), true);
}