DrainNone returns a strategy that re-evaluates after every single completion. This is the default strategy.
()
| 68 | // DrainNone returns a strategy that re-evaluates after every single completion. |
| 69 | // This is the default strategy. |
| 70 | func DrainNone() DrainStrategy { |
| 71 | return drainNone{} |
| 72 | } |
| 73 | |
| 74 | type drainNone struct{} |
| 75 |
no outgoing calls