| 83 | } |
| 84 | |
| 85 | type Dematerializer struct { |
| 86 | sctx *super.Context |
| 87 | mu sync.Mutex |
| 88 | parent Puller |
| 89 | } |
| 90 | |
| 91 | func NewDematerializer(sctx *super.Context, p Puller) *Dematerializer { |
| 92 | return &Dematerializer{sctx: sctx, parent: p} |
nothing calls this directly
no outgoing calls
no test coverage detected