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 newEventStorewith the given serializer and repository. -
Uses of ObjectSerializer in com.reallifedeveloper.common.infrastructure
Classes in com.reallifedeveloper.common.infrastructure that implement ObjectSerializerModifier and TypeClassDescriptionclassAn implementation of theObjectSerializerthat 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 newKafkaNotificationPublisherwhich uses the givenObjectSerializerto serialize notifications, and the givenKafkaTemplateto send them to Kafka.RabbitMQNotificationPublisher(com.rabbitmq.client.ConnectionFactory connectionFactory, ObjectSerializer<String> objectSerializer) Creates a newRabbitMQNotificationPublisherthat 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 newNotificationLogRepresentationrepresenting the givenNotificationLog, and using the givenObjectSerializerto serialize the domain events.NotificationRepresentation(Notification notification, ObjectSerializer<String> objectSerializer) Creates a newNotificationRepresentationrepresenting the givenNotification, and using the givenObjectSerializerto serialize the domain event.NotificationResource(NotificationService notificationService, ObjectSerializer<String> objectSerializer)