| 23 | ) |
| 24 | |
| 25 | type ScalerFunc struct { |
| 26 | ScaleFunc func(apiName string, request int32) error |
| 27 | GetInFlightRequestsFunc func(apiName string, window time.Duration) (*float64, error) |
| 28 | GetAutoscalingSpecFunc func(apiName string) (*userconfig.Autoscaling, error) |
| 29 | CurrentRequestedReplicasFunc func(apiName string) (int32, error) |
| 30 | } |
| 31 | |
| 32 | func (s *ScalerFunc) Scale(apiName string, request int32) error { |
| 33 | if s.ScaleFunc == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected