backend

package
v0.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 1, 2021 License: MIT Imports: 1 Imported by: 0

Documentation

Overview

Package backend provides the K/V store interface for crypt backends.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type KVPair

type KVPair struct {
	Key   string
	Value []byte
}

KVPair holds both a key and value when reading a list.

type KVPairs

type KVPairs []*KVPair

type Response

type Response struct {
	Value []byte
	Error error
}

Response represents a response from a backend store.

type Store

type Store interface {
	// Get retrieves a value from a K/V store for the provided key.
	Get(ctx context.Context, key string) ([]byte, error)

	// Set sets the provided key to value.
	Set(ctx context.Context, key string, value []byte) error

	// Watch monitors a K/V store for changes to key.
	Watch(ctx context.Context, key string) <-chan *Response
}

A Store is a K/V store backend that retrieves and sets, and monitors data in a K/V store.

type Watcher

type Watcher interface {
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL