2026-02-06 17:57:03 +04:00
|
|
|
package httpclient
|
|
|
|
|
|
|
|
|
|
// IHttpStatusHandler is an interface for handling HTTP request statuses
|
|
|
|
|
type IHttpStatusHandler interface {
|
|
|
|
|
// OnRequest handles a request with its status result
|
|
|
|
|
OnRequest(status string)
|
|
|
|
|
// OnRetry handles retry events
|
|
|
|
|
OnRetry()
|
|
|
|
|
}
|