Record Class CapturedEvent

java.lang.Object
java.lang.Record
com.opencqrs.framework.persistence.CapturedEvent
Record Components:
subject - the subject the event is going to be published to
event - the event object to be published
metaData - the event meta-data to be published
preconditions - the preconditions that must not be violated when publishing

public record CapturedEvent(@NotBlank String subject, @NotNull Object event, @NotNull Map<String,?> metaData, @NotNull List<Precondition> preconditions) extends Record
Record capturing an event publication intent.
  • Constructor Details

    • CapturedEvent

      public CapturedEvent(String subject, Object event)
      Convenience constructor, if no meta-data or preconditions are needed.
      Parameters:
      subject - the subject the event is going to be published to
      event - the event object to be published
    • CapturedEvent

      public CapturedEvent(@NotBlank @NotBlank String subject, @NotNull @NotNull Object event, @NotNull @NotNull Map<String,?> metaData, @NotNull @NotNull List<Precondition> preconditions)
      Creates an instance of a CapturedEvent record class.
      Parameters:
      subject - the value for the subject record component
      event - the value for the event record component
      metaData - the value for the metaData record component
      preconditions - the value for the preconditions record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class 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 Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(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 class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • subject

      @NotBlank public @NotBlank String subject()
      Returns the value of the subject record component.
      Returns:
      the value of the subject record component
    • event

      @NotNull public @NotNull Object event()
      Returns the value of the event record component.
      Returns:
      the value of the event record component
    • metaData

      @NotNull public @NotNull Map<String,?> metaData()
      Returns the value of the metaData record component.
      Returns:
      the value of the metaData record component
    • preconditions

      @NotNull public @NotNull List<Precondition> preconditions()
      Returns the value of the preconditions record component.
      Returns:
      the value of the preconditions record component