dynamodb

package
v0.0.0-...-9345043 Latest Latest
Warning

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

Go to latest
Published: Nov 8, 2016 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrCouldNotClearDB = errors.New("could not clear database")

ErrCouldNotClearDB is when the database could not be cleared.

View Source
var ErrCouldNotLoadAggregate = errors.New("could not load aggregate")

ErrCouldNotLoadAggregate is when an aggregate could not be loaded.

View Source
var ErrCouldNotMarshalEvent = errors.New("could not marshal event")

ErrCouldNotMarshalEvent is when an event could not be marshaled into BSON.

View Source
var ErrCouldNotSaveAggregate = errors.New("could not save aggregate")

ErrCouldNotSaveAggregate is when an aggregate could not be saved.

View Source
var ErrCouldNotUnmarshalEvent = errors.New("could not unmarshal event")

ErrCouldNotUnmarshalEvent is when an event could not be unmarshaled into a concrete type.

View Source
var ErrInvalidEvent = errors.New("invalid event")

ErrInvalidEvent is when an event does not implement the Event interface.

Functions

This section is empty.

Types

type EventStore

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

EventStore implements an EventStore for MongoDB.

func NewEventStore

func NewEventStore(config *EventStoreConfig) (*EventStore, error)

NewEventStore creates a new EventStore.

func (*EventStore) CreateTable

func (s *EventStore) CreateTable() error

CreateTable creates the table if it is not allready existing and correct.

func (*EventStore) DeleteTable

func (s *EventStore) DeleteTable() error

DeleteTable deletes the event table.

func (*EventStore) Load

func (s *EventStore) Load(aggregateType eh.AggregateType, id eh.UUID) ([]eh.EventRecord, error)

Load loads all events for the aggregate id from the database. Returns ErrNoEventsFound if no events can be found.

func (*EventStore) Save

func (s *EventStore) Save(events []eh.Event, originalVersion int) error

Save appends all events in the event stream to the database.

type EventStoreConfig

type EventStoreConfig struct {
	Table    string
	Region   string
	Endpoint string
}

EventStoreConfig is a config for the DynamoDB event store.

Jump to

Keyboard shortcuts

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