This adds the implementation for hte stream_manager API. It goes over all stream, on all shards and combine the result to a vector of streams. Signed-off-by: Amnon Heiman <amnon@cloudius-systems.com>
14 lines
151 B
C++
14 lines
151 B
C++
/*
|
|
* Copyright 2015 Cloudius Systems
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "api.hh"
|
|
|
|
namespace api {
|
|
|
|
void set_stream_manager(http_context& ctx, routes& r);
|
|
|
|
}
|