Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Downloader ¶
type Downloader interface {
Download(ctx context.Context, w io.WriterAt, input *s3iot.DownloadInput) (s3iot.DownloadContext, error)
}
Downloader interface of s3iot.
type UpDownloader ¶
type UpDownloader interface { Uploader Downloader }
UpDownloader is the interface that groups Uploader and Downloader interfaces.
func CombineUpDownloader ¶
func CombineUpDownloader(u Uploader, d Downloader) UpDownloader
CombineUpDownloader combines Uploader and Downloader as UpDwonloader interface.
type Uploader ¶
type Uploader interface {
Upload(ctx context.Context, input *s3iot.UploadInput) (s3iot.UploadContext, error)
}
Uploader interface of s3iot.
Click to show internal directories.
Click to hide internal directories.