# Functions
NewTicker creates and starts a new Ticker for the provided channel.
NewTimeTicker is a convenience function allowing to create time-based retransmission.Ticker for the provided duration.
ScheduleRetransmissions uses the given Strategy to decide whether to call the provided RetransmitFn for every new tick received from the provided Ticker for the entire lifetime of the Context.
WithBackoffStrategy uses the BackoffStrategy as the retransmission strategy.
WithRetransmissionSupport takes the standard network message handler and enhances it with functionality allowing to handle retransmissions.
WithStandardStrategy uses the StandardStrategy as the retransmission strategy.
WithStrategy is a strategy factory function that returns the requested strategy instance.
# Structs
BackoffStrategy is a retransmission strategy that triggers the retransmission routine with an exponentially increasing delay.
StandardStrategy is the basic retransmission strategy that triggers the retransmission routine on every tick.
Ticker controls the frequency of retransmissions.
# Interfaces
Strategy represents a specific retransmission strategy.
# Type aliases
RetransmitFn represents a retransmission routine.