Documentation
¶
Index ¶
Constants ¶
View Source
const ( // Pure ... Pure = iota // Initializing ... Initializing // Running ... Running )
Variables ¶
View Source
var ErrCatchup = errors.New("views: catching up with the latest changes")
ErrCatchup is returned when the view is not yet caught up with the latest changes.
Functions ¶
This section is empty.
Types ¶
type View ¶
type View[V Value] interface { // Get is used to retrieve a value from the view. Get(key string) (V, error) // Set is used to set a value in the view. Set(key string, value V) error // Delete is used to delete a value from the view. Delete(key string) error server.Listener }
View is a view of the data in the table
Click to show internal directories.
Click to hide internal directories.