(l Limiter)
| 149 | } |
| 150 | |
| 151 | func WithUnpackLimiter(l Limiter) UnpackerOpt { |
| 152 | return UnpackerOpt(func(c *unpackerConfig) error { |
| 153 | c.unpackLimiter = l |
| 154 | return nil |
| 155 | }) |
| 156 | } |
| 157 | |
| 158 | // Unpacker unpacks images by hooking into the image handler process. |
| 159 | // Unpacks happen in the backgrounds and waited on to complete. |
no test coverage detected
searching dependent graphs…