datastore

package
v0.0.0-...-dd9aec0 Latest Latest
Warning

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

Go to latest
Published: Aug 3, 2023 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Container

type Container struct {
	Handle   string                 `json:"handle"`
	IP       string                 `json:"ip"`
	Metadata map[string]interface{} `json:"metadata"`
}

type Datastore

type Datastore interface {
	Add(handle, ip string, metadata map[string]interface{}) error
	Delete(handle string) (Container, error)
	ReadAll() (map[string]Container, error)
}

type FileLocker

type FileLocker interface {
	filelock.FileLocker
}

type LockedFile

type LockedFile interface {
	filelock.LockedFile
}

type Store

type Store struct {
	Serializer serial.Serializer
	LockerNew  func(filePath string) filelock.FileLocker
}

func (*Store) Add

func (c *Store) Add(filePath, handle, ip string, metadata map[string]interface{}) error

func (*Store) Delete

func (c *Store) Delete(filePath, handle string) (Container, error)

func (*Store) ReadAll

func (c *Store) ReadAll(filePath string) (map[string]Container, error)

Jump to

Keyboard shortcuts

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