DirectTerminalFinalizer emits a terminal response without manager-level deduplication.
(_ string, _ string, emit func())
| 8 | // DirectTerminalFinalizer emits a terminal response without manager-level |
| 9 | // deduplication. |
| 10 | func DirectTerminalFinalizer(_ string, _ string, emit func()) bool { |
| 11 | if emit == nil { |
| 12 | return false |
| 13 | } |
| 14 | emit() |
| 15 | return true |
| 16 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…