Documentation ¶
Index ¶
- Variables
- type Backend
- type BackendInMemory
- type ConfigScanAliasIsNotIncludedError
- type DataLink
- type DataNode
- type DataRow
- type DataRowReader
- type DataRowReaderInMemory
- type Driver
- type DumpObserver
- type DumpToStdout
- type DumpWriter
- type Entity
- type Option
- type ScanObserver
- type Snapshot
- type Status
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type BackendInMemory ¶
type BackendInMemory struct {
// contains filtered or unexported fields
}
func NewBackendInMemory ¶
func NewBackendInMemory() *BackendInMemory
func (*BackendInMemory) Close ¶
func (b *BackendInMemory) Close() error
func (*BackendInMemory) PullAll ¶
func (b *BackendInMemory) PullAll(node DataNode) ([]DataNode, error)
func (*BackendInMemory) Snapshot ¶
func (b *BackendInMemory) Snapshot() Snapshot
type ConfigScanAliasIsNotIncludedError ¶ added in v0.2.0
type ConfigScanAliasIsNotIncludedError struct {
// contains filtered or unexported fields
}
func (*ConfigScanAliasIsNotIncludedError) Error ¶ added in v0.2.0
func (e *ConfigScanAliasIsNotIncludedError) Error() string
type DataNode ¶
func DecodeDataNode ¶
type DataRowReader ¶
type DataRowReaderInMemory ¶
type DataRowReaderInMemory struct {
// contains filtered or unexported fields
}
func NewDataRowReaderInMemory ¶
func NewDataRowReaderInMemory(rows []DataRow) *DataRowReaderInMemory
func (*DataRowReaderInMemory) Close ¶
func (r *DataRowReaderInMemory) Close() error
func (*DataRowReaderInMemory) ReadDataRow ¶
func (r *DataRowReaderInMemory) ReadDataRow() (DataRow, error)
type Driver ¶
type Driver struct {
// contains filtered or unexported fields
}
func (*Driver) Dump ¶
func (d *Driver) Dump(observers ...DumpObserver) error
func (*Driver) Scan ¶
func (d *Driver) Scan(input DataRowReader, observers ...ScanObserver) error
type DumpObserver ¶ added in v0.2.0
type DumpToStdout ¶
type DumpToStdout struct{}
func NewDumpToStdout ¶
func NewDumpToStdout() *DumpToStdout
func (*DumpToStdout) Close ¶
func (d *DumpToStdout) Close() error
type DumpWriter ¶
type Option ¶ added in v0.2.0
type Option interface {
// contains filtered or unexported methods
}
func WithAliases ¶ added in v0.2.0
type ScanObserver ¶
Click to show internal directories.
Click to hide internal directories.