Documentation ¶
Index ¶
Constants ¶
Variables ¶
View Source
var ( // ErrNotFound is key not found err ErrNotFound = dynamo.ErrNotFound )
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { Put(name string, id int, object interface{}) error GetObject(name string, id int) (activitystream.Object, error) TakeObject(name string, base int, cnt int, order Order) ([]activitystream.Object, error) Inc(key string) (int, error) // Top returns count of the key. if key does not exist, return (0, ErrNotFound) Top(key string) (int, error) }
Click to show internal directories.
Click to hide internal directories.