Documentation ¶
Overview ¶
Package ioproxy is a package that provides an io proxy for the app.
Index ¶
Constants ¶
View Source
const ( // SeekStart is a const for io.SeekStart. SeekStart = io.SeekStart )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Io ¶
type Io interface {
Copy(dst WriterInstanceInterface, src ReaderInstanceInterface) (int64, error)
}
Io is an interface for io.
type IoProxy ¶
type IoProxy struct{}
IoProxy is a struct that implements Io.
func (*IoProxy) Copy ¶
func (*IoProxy) Copy(dst WriterInstanceInterface, src ReaderInstanceInterface) (int64, error)
Copy is a proxy for io.Copy.
type ReaderInstance ¶
type ReaderInstance struct{}
ReaderInstance is a struct that implements ReaderInstanceInterface.
type ReaderInstanceInterface ¶
ReaderInstanceInterface is an interface for io.Reader.
type WriterInstance ¶
type WriterInstance struct{}
WriterInstance is a struct that implements WriterInterface.
type WriterInstanceInterface ¶
WriterInstanceInterface is an interface for io.Writer.
Click to show internal directories.
Click to hide internal directories.