Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Folder ¶
type Folder interface { // Message returns an io.ReadCloser for the next message in the folder. // After the last message, // Message returns a nil ReadCloser. // After calling Message, // it is an error to call it again before first closing the ReadCloser. Message() (io.ReadCloser, error) // Close releases resources held by the folder. Close() error }
Folder allows reading messages one by one.
Click to show internal directories.
Click to hide internal directories.