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 thecurrent
record component.NotificationLogId.next()
Gives aNotificationLogId
representing the next batch of notifications, after the ones in the currentNotificationLog
.@Nullable NotificationLogId
NotificationLog.nullableNext()
Returns the value of thenullableNext
record component.@Nullable NotificationLogId
NotificationLog.nullablePrevious()
Returns the value of thenullablePrevious
record component.NotificationLogId.previous()
Gives aNotificationLogId
representing 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
.