Package org.tinyradius.client.timeout

TimeoutHandler schedules a retry in the future and handles timeouts.

A basic implementation that times out based on fixed period and max attempt count is included. Custom implementations such as exponential backoff or using external service to determine timeouts/retries is possible in the same way.

  • Interface Summary 
    Interface Description
    TimeoutHandler
    Schedules a retry in the future and handles timeouts.
  • Class Summary 
    Class Description
    BasicTimeoutHandler
    TimeoutHandler that waits a fixed period for every timeout, up to a predefined max attempt count.