materialization

package
v0.3.1 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Materialization

type Materialization struct {
	MaterializationID string
	SnapshotID        string
	Strategy          Strategy
	ContentHash       string
	Bytes             int64
	CreatedAt         time.Time
}

Materialization is the actual representation delivered to a consumer, derived from a Snapshot.

type Materializer

type Materializer interface {
	Materialize(ctx context.Context, snap snapshot.Snapshot, content []byte) ([]byte, error)
}

type RawMaterializer

type RawMaterializer struct{}

RawMaterializer is the only strategy in v0.1: pass-through, deterministic.

func (RawMaterializer) Materialize

func (RawMaterializer) Materialize(_ context.Context, _ snapshot.Snapshot, content []byte) ([]byte, error)

type Store

type Store interface {
	Create(ctx context.Context, m Materialization) error
	Get(ctx context.Context, id string) (Materialization, error)
	// GetBySnapshot is the dedup lookup: a materialization is reused for a
	// given (snapshot, strategy) pair rather than rebuilt on every resolve.
	GetBySnapshot(ctx context.Context, snapshotID string, strategy Strategy) (Materialization, bool, error)
}

type Strategy

type Strategy string
const StrategyRaw Strategy = "raw"

Jump to

Keyboard shortcuts

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