Struct actix_nats::PublishMessage[][src]

pub struct PublishMessage { /* fields omitted */ }

PublishMessage is a message that publishes a buffer to the NATS queue but doesn't wait for a reply afterwards. Think of it as the Pub part in PubSub.

Methods

impl PublishMessage
[src]

Trait Implementations

impl Message for PublishMessage
[src]

The type of value that this message will resolved with if it is successful. Read more

impl Handler<PublishMessage> for NATSExecutorSync
[src]

The type of value that this handle will return

Method is called for every message received by this Actor

Auto Trait Implementations