mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 19:10:42 +00:00
This adds a stub implementation for the hinted handoff. The API returns the currect type but with stubed values. After applying this patch the api-doc will be available at: /api-doc/hinted_handoff/ The following url will be available: /hinted_handoff/hints /hinted_handoff/schedule /hinted_handoff/pause Signed-off-by: Amnon Heiman <amnon@cloudius-systems.com>
19 lines
239 B
C++
19 lines
239 B
C++
/*
|
|
* Copyright 2015 Cloudius Systems
|
|
*/
|
|
|
|
#ifndef API_HINTED_HANDOFF_HH_
|
|
#define API_HINTED_HANDOFF_HH_
|
|
|
|
#include "api.hh"
|
|
|
|
namespace api {
|
|
|
|
void set_hinted_handoff(http_context& ctx, routes& r);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* API_HINTED_HANDOFF_HH_ */
|