Notification Message Types
Notification Message Types Documentation
This document describes the two primary notification message types (ImageGenerationTaskCompleted
and ImageGenerationProgress
) used in the AdCreative system. These messages can be consumed via WebHook HTTP endpoints or RabbitMQ queues.
Overview of Notification Delivery Mechanisms
WebHook HTTP Endpoint: Messages are sent as HTTP POST requests to a specified endpoint. The message payload is serialized in JSON format.
RabbitMQ Queue: Messages are delivered to the specified RabbitMQ queue in a serialized binary or JSON format.
Notification Message Types
Common Structure
All notification message types share the same structure, with the only difference being the MessageType
field.
List of Message Types
ImageGenerationProgress
ImageUpscalingProgress
ImageFaceEnhancingProgress
ImageBackgroundRemovingProgress
ImageStockGenerationProgress
ImageGenerationTaskCompleted
ImageUpscalingTaskCompleted
ImageFaceEnhancingTaskCompleted
ImageBackgroundRemovingTaskCompleted
ImageStockGenerationTaskCompleted
The MessageType
field specifies the type of notification being sent.
1. ImageGenerationTaskCompleted
Description:
This message is sent when a single image generation task is completed, indicating whether the task was successful and including the image content if applicable.
WebHook JSON Example
RabbitMQ Model
Exchange:
image-render.notifications
Routing Key:
task.completed
Message Payload:
2. ImageGenerationProgress
Description:
This message provides the current progress of an image generation process, detailing task completion status and other metadata.
WebHook JSON Example
RabbitMQ Model
Exchange:
image-render.notifications
Routing Key:
progress.update
Message Payload:
How to Consume Notifications
WebHook Endpoint
Setup:
Provide the WebHook URL during application configuration.
Ensure the endpoint accepts HTTP POST requests with JSON payloads.
Processing:
Parse the
MessageType
field to determine the type of notification.Handle the notification data as required.
RabbitMQ Queue
Setup:
Bind to the exchange
image-render.notifications
with appropriate routing keys (task.completed
,progress.update
).Consume messages from the queue.
Processing:
Deserialize the message payload into the appropriate model (
ImageGenerationTaskCompleted
orImageGenerationProgress
).Implement business logic based on the notification type and content.
Notes
Security:
Ensure RabbitMQ queues are securely configured with proper access credentials.
Validate incoming WebHook requests to verify authenticity.
Retry Mechanisms:
Implement retry logic for failed WebHook delivery attempts.
Handle RabbitMQ message requeuing for unprocessed messages.
This documentation should help developers understand and integrate notification message types effectively into their systems.
Last updated