Versions in this module Expand all Collapse all v0 v0.2.0 Dec 1, 2020 Changes in this version + type Buffer struct + func NewBuffer(prefix string) *Buffer + func (this *Buffer) Close() error + func (this *Buffer) Read() (data []byte, err error) + func (this *Buffer) Write(data []byte) (n int, err error) + type File struct + func NewFile(name string) *File + func (this *File) Close() error + func (this *File) Delete() error + func (this *File) Read() (data []byte, err error) + func (this *File) Size() int + func (this *File) Sync() error + func (this *File) Write(data []byte) (int, error)