garage-k2v-go/poll_single.go

11 lines
253 B
Go
Raw Normal View History

2025-02-25 20:24:09 -05:00
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)
}