Close - this method makes underlying io.ReadCloser's Close method available.
()
| 492 | |
| 493 | // Close - this method makes underlying io.ReadCloser's Close method available. |
| 494 | func (s *StreamingReader) Close() error { |
| 495 | if s.sh256 != nil { |
| 496 | s.sh256.Close() |
| 497 | s.sh256 = nil |
| 498 | } |
| 499 | return s.baseReadCloser.Close() |
| 500 | } |
no outgoing calls