Files
scylladb/api/messaging_service.hh
Amnon Heiman a928c7422d Add the messaging_service API implementation
This API gother information about messages passing in the system, in
this patch the following API will be supported:

/messaging_service/messages/replied
/messaging_service/messages/sent
/messaging_service/messages/pending
/messaging_service/messages/exception
/messaging_service/messages/respond_pending
/messaging_service/messages/dropped

The swagger defintion can be retrieved from:
/api-doc/messaging_service
2015-06-16 14:40:08 +03:00

17 lines
249 B
C++

/*
* Copyright 2015 Cloudius Systems
*/
#ifndef API_MESSAGING_SERVICE_HH_
#define API_MESSAGING_SERVICE_HH_
#include "api.hh"
namespace api {
void set_messaging_service(http_context& ctx, routes& r);
}
#endif /* API_MESSAGING_SERVICE_HH_ */