NewProcessorChain initialized the root StreamProcessor
(mt string, r io.Reader)
| 113 | |
| 114 | // NewProcessorChain initialized the root StreamProcessor |
| 115 | func NewProcessorChain(mt string, r io.Reader) StreamProcessor { |
| 116 | return &processorChain{ |
| 117 | mt: mt, |
| 118 | rc: r, |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | type processorChain struct { |
| 123 | mt string |
no outgoing calls
no test coverage detected
searching dependent graphs…