Files
AestheChic/services/image-worker-cpp/src/rmq/ConnectionHandler.cpp
T
2026-07-13 10:34:54 +02:00

18 lines
458 B
C++

#include "ConnectionHandler.hpp"
#include <iostream>
void ConnectionHandler::onConnected(AMQP::TcpConnection *connection)
{
std::cout << "TCP CONNECTED\n";
}
void ConnectionHandler::onReady(AMQP::TcpConnection *connection)
{
std::cout << "AMQP READY\n";
}
void ConnectionHandler::onError(AMQP::TcpConnection *connection, const char *message)
{
std::cerr << "AMQP error: " << message << std::endl;
}