| 362 | } |
| 363 | |
| 364 | type blockingMCPFactory struct { |
| 365 | calls atomic.Int32 |
| 366 | firstStarted chan struct{} |
| 367 | releaseFirst chan struct{} |
| 368 | } |
| 369 | |
| 370 | func newBlockingMCPFactory() *blockingMCPFactory { |
| 371 | return &blockingMCPFactory{ |
nothing calls this directly
no outgoing calls
no test coverage detected