15 lines
		
	
	
		
			320 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			320 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package client
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/micro/go-micro/v3/util/backoff"
 | 
						|
)
 | 
						|
 | 
						|
type BackoffFunc func(ctx context.Context, req Request, attempts int) (time.Duration, error)
 | 
						|
 | 
						|
func exponentialBackoff(ctx context.Context, req Request, attempts int) (time.Duration, error) {
 | 
						|
	return backoff.Do(attempts), nil
 | 
						|
}
 |