Subscribes to the 'examples' node on an intermediary accessible on 127.0.0.1:5672.
Subscribes to the 'examples' node on an intermediary accessible on 127.0.0.1:5672. Simply prints out the body of received messages.
#include "options.hpp"
#include <iostream>
#include <map>
private:
std::string url;
std::string user;
std::string password;
int expected;
int received;
public:
simple_recv(const std::string &s, const std::string &u, const std::string &p, int c) :
url(s), user(u), password(p), expected(c), received(0) {}
if (!user.empty()) co.
user(user);
if (!password.empty()) co.
password(password);
}
if (!msg.
id().empty() && proton::coerce<int>(msg.
id()) < received) {
return;
}
if (expected == 0 || received < expected) {
std::cout << msg.
body() << std::endl;
received++;
if (received == expected) {
}
}
}
};
int main(int argc, char **argv) {
std::string address("127.0.0.1:5672/examples");
std::string user;
std::string password;
int message_count = 100;
example::options opts(argc, argv);
opts.add_value(address, 'a', "address", "connect to and receive from URL", "URL");
opts.add_value(message_count, 'm', "messages", "receive COUNT messages", "COUNT");
opts.add_value(user, 'u', "user", "authenticate as USER", "USER");
opts.add_value(password, 'p', "password", "authenticate with PASSWORD", "PASSWORD");
try {
opts.parse();
simple_recv recv(address, user, password, message_count);
return 0;
} catch (const example::bad_option& e) {
std::cout << opts << std::endl << e.what() << std::endl;
} catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
}
return 1;
}
Options for creating a connection.
Definition: connection_options.hpp:67
connection_options & password(const std::string &)
Set the password used to authenticate the connection.
connection_options & user(const std::string &)
Set the user name used to authenticate the connection.
void close()
Close the connection.
A top-level container of connections, sessions, and links.
Definition: container.hpp:50
void run()
Run the container in the current thread.
returned< receiver > open_receiver(const std::string &addr_url)
Open a connection and receiver for addr_url.
A received message.
Definition: delivery.hpp:40
class receiver receiver() const
Return the receiver for this delivery.
void close()
Close the endpoint.
An AMQP message.
Definition: message.hpp:48
void id(const message_id &)
Set the message ID.
void body(const value &x)
Set the body. Equivalent to body() = x.
Handler for Proton messaging events.
Definition: messaging_handler.hpp:69
virtual void on_message(delivery &, message &)
A message is received.
virtual void on_container_start(container &)
The container event loop is starting.
A channel for receiving messages.
Definition: receiver.hpp:41
class connection connection() const
Return the connection for this transfer.
A connection to a remote AMQP peer.
Options for creating a connection.
A top-level container of connections, sessions, and links.
A named channel for sending or receiving messages.
Handler for Proton messaging events.
A holder for any AMQP value, simple or complex.