Record InMemoryEventStore<E extends Event>

java.lang.Object
java.lang.Record
io.memoria.jutils.adapter.eventsourcing.event.InMemoryEventStore<E>
All Implemented Interfaces:
EventStore<E>

public record InMemoryEventStore<E extends Event>(java.util.Map<java.lang.String,​java.util.List<E extends Event>> db)
extends java.lang.Record
implements EventStore<E>
  • Constructor Summary

    Constructors 
    Constructor Description
    InMemoryEventStore​(java.util.Map<java.lang.String,​java.util.List<E>> db)
    Creates an instance of a InMemoryEventStore record.
  • Method Summary

    Modifier and Type Method Description
    reactor.core.publisher.Mono<java.lang.Void> add​(java.lang.String streamId, E e)  
    reactor.core.publisher.Mono<java.lang.Void> add​(java.lang.String streamId, java.lang.Iterable<E> iterable)  
    java.util.Map<java.lang.String,​java.util.List<E>> db()
    Returns the value of the db record component.
    boolean equals​(java.lang.Object o)
    Indicates whether some other object is "equal to" this one.
    reactor.core.publisher.Mono<java.lang.Boolean> exists​(java.lang.String streamId)  
    int hashCode()
    Returns a hash code value for this object.
    reactor.core.publisher.Flux<E> stream​(java.lang.String streamId)  
    java.lang.String toString()
    Returns a string representation of this record.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • InMemoryEventStore

      public InMemoryEventStore​(java.util.Map<java.lang.String,​java.util.List<E>> db)
      Creates an instance of a InMemoryEventStore record.
      Parameters:
      db - the value for the db record component
  • Method Details

    • add

      public reactor.core.publisher.Mono<java.lang.Void> add​(java.lang.String streamId, E e)
      Specified by:
      add in interface EventStore<E extends Event>
    • add

      public reactor.core.publisher.Mono<java.lang.Void> add​(java.lang.String streamId, java.lang.Iterable<E> iterable)
      Specified by:
      add in interface EventStore<E extends Event>
    • exists

      public reactor.core.publisher.Mono<java.lang.Boolean> exists​(java.lang.String streamId)
      Specified by:
      exists in interface EventStore<E extends Event>
    • stream

      public reactor.core.publisher.Flux<E> stream​(java.lang.String streamId)
      Specified by:
      stream in interface EventStore<E extends Event>
    • toString

      public java.lang.String toString()
      Returns a string representation of this record. The representation contains the name of the type, followed by the name and value of each of the record components.
      Specified by:
      toString in class java.lang.Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class java.lang.Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals​(java.lang.Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class java.lang.Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • db

      public java.util.Map<java.lang.String,​java.util.List<E>> db()
      Returns the value of the db record component.
      Returns:
      the value of the db record component