Uses of Class
com.reallifedeveloper.common.application.notification.NotificationLogId
Packages that use NotificationLogId
Package
Description
Code to notify other systems about domain events that have occurred in this system and that have
been saved in an
EventStore.-
Uses of NotificationLogId in com.reallifedeveloper.common.application.notification
Methods in com.reallifedeveloper.common.application.notification that return NotificationLogIdModifier and TypeMethodDescriptionNotificationLog.current()Returns the value of thecurrentrecord component.NotificationLogId.next()Gives aNotificationLogIdrepresenting the next batch of notifications, after the ones in the currentNotificationLog.@Nullable NotificationLogIdNotificationLog.nullableNext()Returns the value of thenullableNextrecord component.@Nullable NotificationLogIdNotificationLog.nullablePrevious()Returns the value of thenullablePreviousrecord component.NotificationLogId.previous()Gives aNotificationLogIdrepresenting the previous batch of notifications, before the ones in the currentNotificationLog.Methods in com.reallifedeveloper.common.application.notification that return types with arguments of type NotificationLogIdModifier and TypeMethodDescriptionNotificationLog.next()Gives the ID of the next notification log as ajava.util.Optional.NotificationLog.previous()Gives the ID of the previous notification log as ajava.util.Optional.Methods in com.reallifedeveloper.common.application.notification with parameters of type NotificationLogIdModifier and TypeMethodDescriptionNotificationService.notificationLog(NotificationLogId notificationLogId) Gives an archivedNotificationLog.Constructors in com.reallifedeveloper.common.application.notification with parameters of type NotificationLogIdModifierConstructorDescriptionNotificationLog(NotificationLogId current, @Nullable NotificationLogId nullableNext, @Nullable NotificationLogId nullablePrevious, List<Notification> notifications, boolean isArchived) Creates a newNotificationLog.