本文整理汇总了C++中proton::event::connection方法的典型用法代码示例。如果您正苦于以下问题:C++ event::connection方法的具体用法?C++ event::connection怎么用?C++ event::connection使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类proton::event
的用法示例。
在下文中一共展示了event::connection方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: on_connection_open
void on_connection_open(proton::event &e) {
std::cout << "Inbound server connection connected via SSL. Protocol: " <<
e.connection().transport().ssl().protocol() << std::endl;
if (e.connection().transport().sasl().outcome() == sasl::OK) {
std::string subject = e.connection().transport().ssl().remote_subject();
std::cout << "Inbound client certificate identity " << find_CN(subject) << std::endl;
}
else {
std::cout << "Inbound client authentication failed" <<std::endl;
e.connection().close();
}
inbound_listener.close();
}
示例2: on_delivery_accept
void on_delivery_accept(proton::event &e) {
confirmed++;
if (confirmed == total) {
std::cout << "all messages confirmed" << std::endl;
e.connection().close();
acceptor.close();
}
}
示例3: on_accepted
void on_accepted(proton::event &e) {
confirmed_++;
e.delivery().settle();
if (confirmed_ == total_) {
std::cout << "all messages confirmed" << std::endl;
if (!replying_)
e.connection().close();
}
}
示例4: on_message
void on_message(proton::event &e) {
std::cout << "Received " << e.message().body() << std::endl;
std::string reply_to = e.message().reply_to();
proton::message reply;
reply.address(reply_to);
reply.body(to_upper(e.message().body().get<std::string>()));
reply.correlation_id(e.message().correlation_id());
if (!senders[reply_to])
senders[reply_to] = e.connection().open_sender(reply_to);
senders[reply_to].send(reply);
}
示例5: on_message
void on_message(proton::event &e) {
if (requests.empty()) return; // Spurious extra message!
proton::message& response = e.message();
std::cout << requests.front() << " => " << response.body() << std::endl;
requests.erase(requests.begin());
if (!requests.empty()) {
send_request();
} else {
e.connection().close();
}
}
示例6: on_message
void on_message(proton::event &e) {
proton::message &msg = e.message();
msg.body().decode() >> received_content_;
received_bytes_ += received_content_.size();
if (received_ < total_) {
received_++;
}
e.delivery().settle();
if (received_ == total_) {
e.receiver().close();
e.connection().close();
}
}
示例7: on_message
void on_message(proton::event &e) {
proton::message& msg = e.message();
if (msg.id().get<uint64_t>() < received)
return; // ignore duplicate
if (expected == 0 || received < expected) {
std::cout << msg.body() << std::endl;
received++;
}
if (received == expected) {
e.receiver().close();
e.connection().close();
if (!!acceptor) acceptor.close();
}
}
示例8: log
void
on_message ( proton::event &e )
{
log ( "on_message" );
double receive_timestamp = get_timestamp();
proton::message& msg = e.message();
double send_timestamp = msg.body().get<double>();
double latency = receive_timestamp - send_timestamp;
fprintf ( output_fp, "latency %.6lf\n", latency );
if ( ! received )
{
rr_init ( & resource_reporter );
}
if ( (expected == 0)
||
(expected == -1)
||
(received < expected)
)
{
received++;
if ( ! ( received % report_frequency ) )
{
report ( output_fp );
}
if (received == expected)
{
log ( "closing receiver and connection." );
e.receiver().close();
e.connection().close();
char filename[1000];
sprintf ( filename, "/tmp/simple_recv_%d_is_done", getpid() );
FILE * fp = fopen ( filename, "w" );
fprintf ( fp, ":-)\n" );
fclose ( fp );
}
}
}
示例9: on_start
void on_start(proton::event &e) {
e.connection().open();
sender = e.connection().open_sender(url.path());
receiver = e.connection().open_receiver("", proton::link_options().dynamic_address(true));
}
示例10: on_delivery_accept
void on_delivery_accept(proton::event &e) {
// All done.
e.connection().close();
}
示例11: on_connection_open
void on_connection_open(proton::event &e) {
std::cout << "connection events going to handler_2" << std::endl;
std::cout << "connection max_frame_size: " << e.connection().transport().max_frame_size() <<
", idle timeout: " << e.connection().transport().idle_timeout() << std::endl;
e.connection().close();
}
示例12: on_transport_close
void on_transport_close(proton::event &e) {
remove_stale_consumers(e.connection());
}
示例13: on_message
void on_message(proton::event &e) {
std::cout << e.message().body() << std::endl;
e.connection().close();
}
示例14: on_accepted
void on_accepted(proton::event &e) {
e.connection().close();
}
示例15: on_start
void on_start(proton::event &e) {
e.connection().open();
e.connection().open_receiver(address_);
e.connection().open_sender(address_);
}