nova-boot-messaging 0.1.1

Messaging abstraction and adapters (NATS/Kafka/RabbitMQ) for Nova
docs.rs failed to build nova-boot-messaging-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

nova-boot-messaging

Purpose

  • Message broker integrations: Kafka, RabbitMQ, NATS; consumer helpers and DLQ support.

Quick start

use nova_boot_messaging::NovaMessaging;
let bus = NovaMessaging::in_memory();
NovaApp::new("svc", 8080, state).add_plugin(bus).run().await;

Highlights

  • Consumers with DLQ support and retry helpers.
  • In-memory broker for development and tests.

Docs & examples

  • See crates/plugins/nova-messaging/src and example/ for consumer/producer patterns.