DefaultEventStore

public final class DefaultEventStore extends DefaultRecordBasedRepository<I, E, S> implements EventStore

Default implementation of EventStore.

Constructors

Link copied to clipboard
public void DefaultEventStore()
Constructs new instance.

Functions

Link copied to clipboard
public void append(Event event)
Appends the passed event to the history of events.
Link copied to clipboard
public void appendAll(Iterable<Event> events)
Appends the passed events to the history of events.
Link copied to clipboard
protected boolean isTypeSupplier()
Tells if this repository should be registered as a type supplier with a Stand of the BoundedContext to which this repository belongs.
Link copied to clipboard
public void read(EventStreamQuery request, StreamObserver<Event> responseObserver)
Creates the stream with events matching the passed query.
Link copied to clipboard
public void registerWith(BoundedContext context)
Initializes the instance by registering itself with the passed BoundedContext.

Inherited functions

Link copied to clipboard
public final void applyMigration<T extends TransactionalEntity<I, S, ? extends Object>>(I id, Migration<I, T, S> migration)
Applies a given Migration to an entity with the given ID.
public final void applyMigration<T extends TransactionalEntity<I, S, ? extends Object>>(Set<I> ids, Migration<I, T, S> migration)
Applies a Migration to several entities in batch.
Link copied to clipboard
public void checkNotRegistered()
Verifies that this instance is NOT registered yet.
Link copied to clipboard
public void checkOpen()
Ensures that the object is open.
Link copied to clipboard
public void checkRegistered()
Verifies that this instance is already registered.
Link copied to clipboard
protected static S checkStorage<S extends AutoCloseable>(S storage)
Ensures that the storage is not null.
Link copied to clipboard
public void close()
Closes the repository by closing the underlying storage.
public abstract void close()
Link copied to clipboard
protected final BoundedContext context()
Obtains the BoundedContext to which this repository belongs.
Link copied to clipboard
public E create(I id)
Create a new entity instance with its default state.
Link copied to clipboard
protected abstract Storage<I, ? extends Object, ? extends Object> createStorage()
Creates the storage for this repository.
Link copied to clipboard
Obtains StorageFactory associated with the ServerEnvironment for creating standard storages.
Link copied to clipboard
public final Class<E> entityClass()
Returns the class of entities managed by this repository.
Link copied to clipboard
Obtains EntityFactory associated with this repository.
Link copied to clipboard
Obtains model class for the entities managed by this repository.
Link copied to clipboard
public final TypeUrl entityStateType()
Obtains the TypeUrl for the state objects wrapped by entities managed by this repository.
Link copied to clipboard
Creates an EventFilter for this repository.
Link copied to clipboard
public Optional<E> find(I id)
Finds an entity with the passed ID.
public Iterator<E> find(TargetFilters filters, ResponseFormat format)
Finds the entities passing the given filters and applies the given FieldMask to the results.
Link copied to clipboard
public Optional<E> findActive(I id)
Finds an entity with the passed ID even if the entity is active.
Link copied to clipboard
protected E findOrCreate(I id)
Loads an entity by the passed ID or creates a new one, if the entity was not found.
Link copied to clipboard
public Iterator<EntityRecord> findRecords(TargetFilters filters, ResponseFormat format)
Obtains iterator over entity records matching the passed filters.
Link copied to clipboard
protected final boolean hasContext()
Verifies whether the repository is registered with a BoundedContext.
Link copied to clipboard
public final Class<I> idClass()
Returns the class of IDs used by this repository.
Link copied to clipboard
public Iterator<I> index()
Returns an iterator over the identifiers of all the entities managed by this repository.
Link copied to clipboard
public final boolean isOpen()
Verifies if the repository is open.
Link copied to clipboard
public boolean isRegistered()
Tells if the repository is registered in a BoundedContext.
Link copied to clipboard
public Iterator<E> iterator(Predicate<E> filter)
Returns an iterator over the entities managed by the repository that match the passed filter.
Link copied to clipboard
Obtains an instance of EntityLifecycle for the entity with the given ID.
Link copied to clipboard
public Iterator<E> loadAll(ResponseFormat format)

public Iterator<E> loadAll(Iterable<I> ids, FieldMask fieldMask)
Loads all the entities in this repository with IDs, contained within the passed ids values.
Link copied to clipboard
public Iterator<EntityRecord> loadAllRecords(ResponseFormat format)
Obtains iterator over all present entity records.
Link copied to clipboard
public void onRegistered()
The callback is invoked by a BoundedContext when adding the repository.
Link copied to clipboard
protected void onRoutingFailed(SignalEnvelope<? extends Object, ? extends Object, ? extends Object> envelope, Throwable cause)
A callback invoked when an exception is thrown from message routing.
Link copied to clipboard
protected final void open()
Initializes the storage of the repository.
Link copied to clipboard
Ensures that the repository has the storage.
Link copied to clipboard
protected final Optional<R> route<M extends Message, C extends MessageContext, R>(Route<M, C, R> routing, SignalEnvelope<? extends Object, ? extends Object, C> envelope)
Link copied to clipboard
protected final Storage<I, ? extends Object, ? extends Object> storage()
Returns the storage assigned to this repository.
Link copied to clipboard
public final boolean storageAssigned()
Returns true if the storage is assigned, false otherwise.
Link copied to clipboard
protected final StorageConverter<I, E, S> storageConverter()
Obtains StorageConverter associated with this repository.
Link copied to clipboard
public void store(E entity)
protected abstract void store(E obj)
Stores the passed object.
public void store(Collection<E> entities)
Stores Entities in bulk.
Link copied to clipboard
protected E toEntity(EntityRecord record)
Converts the passed record into an entity.
Link copied to clipboard
protected EntityClass<E> toModelClass(Class<E> cls)
Obtains a model class for the passed entity class value.