Skip to content

Commit

Permalink
Remove experimental notice from KeyValue (#1154)
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrpio committed Dec 5, 2022
1 parent af3503a commit 8241797
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions kv.go
Expand Up @@ -25,9 +25,7 @@ import (
"time"
)

// Notice: Experimental Preview
//
// This functionality is EXPERIMENTAL and may be changed in later releases.
// KeyValueManager is used to manage KeyValue stores.
type KeyValueManager interface {
// KeyValue will lookup and bind to an existing KeyValue store.
KeyValue(bucket string) (KeyValue, error)
Expand All @@ -41,9 +39,7 @@ type KeyValueManager interface {
KeyValueStores() <-chan KeyValueStatus
}

// Notice: Experimental Preview
//
// This functionality is EXPERIMENTAL and may be changed in later releases.
// KeyValue contains methods to operate on a KeyValue store.
type KeyValue interface {
// Get returns the latest value for the key.
Get(key string) (entry KeyValueEntry, err error)
Expand Down

0 comments on commit 8241797

Please sign in to comment.