Uses of Interface
com.reallifedeveloper.common.domain.ObjectSerializer
Packages that use ObjectSerializer
Package
Description
An implementation of an event store, i.e., a way to persist domain events.
Concrete implementations of interfaces in the
com.reallifedeveloper.common
package.Support classes for working with message queues.
REST-ful resources and representations for working with
Notifications
.-
Uses of ObjectSerializer in com.reallifedeveloper.common.application.eventstore
Constructors in com.reallifedeveloper.common.application.eventstore with parameters of type ObjectSerializerModifierConstructorDescriptionEventStore
(ObjectSerializer<String> serializer, StoredEventRepository repository) Creates a newEventStore
with the given serializer and repository. -
Uses of ObjectSerializer in com.reallifedeveloper.common.infrastructure
Classes in com.reallifedeveloper.common.infrastructure that implement ObjectSerializerModifier and TypeClassDescriptionclass
An implementation of theObjectSerializer
that uses JSON as the serialized form. -
Uses of ObjectSerializer in com.reallifedeveloper.common.infrastructure.messaging
Constructors in com.reallifedeveloper.common.infrastructure.messaging with parameters of type ObjectSerializerModifierConstructorDescriptionKafkaNotificationPublisher
(org.springframework.kafka.core.KafkaTemplate<String, String> kafkaTemplate, ObjectSerializer<String> objectSerializer) Creates a newKafkaNotificationPublisher
which uses the givenObjectSerializer
to serialize notifications, and the givenKafkaTemplate
to send them to Kafka.RabbitMQNotificationPublisher
(com.rabbitmq.client.ConnectionFactory connectionFactory, ObjectSerializer<String> objectSerializer) Creates a newRabbitMQNotificationPublisher
that connects to RabbitMQ using the givenConnectionFactory
. -
Uses of ObjectSerializer in com.reallifedeveloper.common.resource.notification
Constructors in com.reallifedeveloper.common.resource.notification with parameters of type ObjectSerializerModifierConstructorDescriptionNotificationLogRepresentation
(NotificationLog notificationLog, ObjectSerializer<String> objectSerializer) Creates a newNotificationLogRepresentation
representing the givenNotificationLog
, and using the givenObjectSerializer
to serialize the domain events.NotificationRepresentation
(Notification notification, ObjectSerializer<String> objectSerializer) Creates a newNotificationRepresentation
representing the givenNotification
, and using the givenObjectSerializer
to serialize the domain event.NotificationResource
(NotificationService notificationService, ObjectSerializer<String> objectSerializer)