| 35 | ) |
| 36 | |
| 37 | type PFStateController struct { |
| 38 | EndpointLock sync.Mutex |
| 39 | |
| 40 | ServiceName string |
| 41 | |
| 42 | AutoscalingRunning int32 |
| 43 | DesiredStateChannel chan int |
| 44 | |
| 45 | ScalingMetadata AutoscalingMetadata |
| 46 | Endpoints []*core.Endpoint |
| 47 | |
| 48 | Period time.Duration |
| 49 | StopCh chan struct{} |
| 50 | } |
| 51 | |
| 52 | func NewPerFunctionStateController(scalingChannel chan int, serviceInfo *proto.ServiceInfo, period time.Duration) *PFStateController { |
| 53 | return &PFStateController{ |
nothing calls this directly
no outgoing calls
no test coverage detected