sessions

package
v4.4.0 Latest Latest
Warning

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

Go to latest
Published: Apr 3, 2024 License: AGPL-3.0 Imports: 10 Imported by: 0

Documentation

Overview

Package sessions is used during indexation to start/stop a session an speed-up the process

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BenchBatcher

type BenchBatcher struct {
	// contains filtered or unexported fields
}

func (*BenchBatcher) Flush

func (bb *BenchBatcher) Flush(ctx context.Context, dao index.DAO)

func (*BenchBatcher) Notify

func (bb *BenchBatcher) Notify(topic string, msg proto.Message)

type DAO

type DAO interface {
	PutSession(session *tree.IndexationSession) error
	ReadSession(sessionUuid string) (*tree.IndexationSession, SessionBatcher, error)
	DeleteSession(session *tree.IndexationSession) error
	CleanSessions() error
}

type MemoryBatcher

type MemoryBatcher struct {
	// contains filtered or unexported fields
}

func (*MemoryBatcher) Flush

func (b *MemoryBatcher) Flush(ctx context.Context, dao index.DAO)

func (*MemoryBatcher) Notify

func (b *MemoryBatcher) Notify(topic string, msg proto.Message)

type SessionBatcher

type SessionBatcher interface {
	Notify(topic string, msg proto.Message)
	Flush(ctx context.Context, dao index.DAO)
}

func GetBenchSessionBatcher

func GetBenchSessionBatcher(b SessionBatcher) SessionBatcher

type SessionMemoryStore

type SessionMemoryStore struct {
	sync.Mutex
	// contains filtered or unexported fields
}

func NewSessionMemoryStore

func NewSessionMemoryStore() *SessionMemoryStore

func (*SessionMemoryStore) CleanSessions

func (s *SessionMemoryStore) CleanSessions() error

func (*SessionMemoryStore) DeleteSession

func (s *SessionMemoryStore) DeleteSession(session *tree.IndexationSession) error

func (*SessionMemoryStore) PutSession

func (s *SessionMemoryStore) PutSession(session *tree.IndexationSession) error

func (*SessionMemoryStore) ReadSession

func (s *SessionMemoryStore) ReadSession(sessionUuid string) (*tree.IndexationSession, SessionBatcher, error)

type StoredEvent

type StoredEvent struct {
	Topic     string
	Msg       proto.Message
	EventTime time.Time
}

Jump to

Keyboard shortcuts

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