11 lines
253 B
Go
11 lines
253 B
Go
|
package k2v
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func (c *Client) PollItem(ctx context.Context, b Bucket, pk string, sk string, ct CausalityToken, timeout time.Duration) (Item, CausalityToken, error) {
|
||
|
return c.readItemSingle(ctx, b, pk, sk, ct, timeout)
|
||
|
}
|