| 30 | ) |
| 31 | |
| 32 | type FunctionStatistics struct { |
| 33 | SuccessfulInvocations int64 `json:"SuccessfulInvocations"` |
| 34 | Inflight int64 `json:"Inflight"` |
| 35 | QueueDepth int64 `json:"QueueDepth"` |
| 36 | } |
| 37 | |
| 38 | func (fs *FunctionStatistics) GetSuccessfulInvocations() int64 { |
| 39 | return atomic.LoadInt64(&fs.SuccessfulInvocations) |
nothing calls this directly
no outgoing calls
no test coverage detected