MCPcopy Index your code
hub / github.com/cloudfoundry/cli / ProgressBarProxyReader

Struct ProgressBarProxyReader

command/plugin/shared/progress_bar_proxy_reader.go:10–13  ·  view source on GitHub ↗

ProgressBarProxyReader wraps a progress bar in a ProxyReader interface.

Source from the content-addressed store, hash-verified

8
9// ProgressBarProxyReader wraps a progress bar in a ProxyReader interface.
10type ProgressBarProxyReader struct {
11 writer io.Writer
12 bar *pb.ProgressBar
13}
14
15func (p ProgressBarProxyReader) Wrap(reader io.Reader) io.ReadCloser {
16 return p.bar.NewProxyReader(reader)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected