d88380c602
Reviewers: zuza Reviewed By: zuza Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D649
15 lines
404 B
C++
15 lines
404 B
C++
#include "communication.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
google::InitGoogleLogging(argv[0]);
|
|
System system;
|
|
system.network().StartClient(1);
|
|
auto channel = system.network().Resolve("127.0.0.1", 10000, "master", "main");
|
|
std::cout << channel << std::endl;
|
|
if (channel != nullptr) {
|
|
channel->Send<SenderMessage>("master", "main");
|
|
}
|
|
system.network().StopClient();
|
|
return 0;
|
|
}
|