ac8c96ccc2
Summary: Remove "produce_" and "Produce" as prefix from all distributed stuff. It's not removed in src/query/ stuff (operators). Reviewers: dgleich Reviewed By: dgleich Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1315
18 lines
372 B
C++
18 lines
372 B
C++
#pragma once
|
|
|
|
#include "communication/rpc/server.hpp"
|
|
#include "database/graph_db.hpp"
|
|
|
|
namespace distributed {
|
|
|
|
/// Serves this worker's data to others.
|
|
class DataRpcServer {
|
|
public:
|
|
DataRpcServer(database::GraphDb &db, communication::rpc::Server &server);
|
|
|
|
private:
|
|
database::GraphDb &db_;
|
|
communication::rpc::Server &rpc_server_;
|
|
};
|
|
} // namespace distributed
|