package
0.17.1
Repository: https://github.com/protocolone/go-plugins.git
Documentation: pkg.go.dev

# README

Round Robin Wrapper

The round robin wrapper is a stateful client wrapper which gives you a true round robin strategy for the selector

Usage

Pass in the wrapper when you create your service

wrapper := roundrobin.NewClientWrapper()

service := micro.NewService(
	micro.Name("foo"),
	micro.WrapClient(wrapper),
)

# Functions

NewClientWrapper is a wrapper which roundrobins requests.