Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create msg preprocessor #269

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from

Commits on Dec 12, 2022

  1. Create preprocessor for combining messages

    Create a preprocessor that reads messages from a queue and combines
    the ones that have the same header (and are next to each other in the
    queue) into a single message. The combined messages are added to a new
    queue (which is then used for sending them).
    Letizia97 committed Dec 12, 2022
    Configuration menu
    Copy the full SHA
    b81aca6 View commit details
    Browse the repository at this point in the history
  2. Add conversion of messages from queue to string

    Messages read from a queue (queuesimple) are generally in bytes,
    even when added as strings to the queue. For sender and receiver
    to work, the messages need to be converted to strings after they are
    read from the queue.
    Letizia97 committed Dec 12, 2022
    Configuration menu
    Copy the full SHA
    66c0a5f View commit details
    Browse the repository at this point in the history