Move RsmMap from the Thrift directory into storage

This commit is contained in:
gvolfing 2022-08-19 10:11:46 +02:00
parent 0f28408db4
commit f9044dc6d1
2 changed files with 6 additions and 1 deletions

View File

@ -80,6 +80,11 @@ class ThriftHandle {
auto destination_port = rsm_map_.at(destination_id);
// Send it to the port of the destination -how?
// TODO(tyler) search for item in can_receive_ that matches the desired types, rather
// than asserting that the last item in can_rx matches.
auto m_opt = std::move(current_message).Take<Ms...>();
return (std::move(m_opt));
}
}

View File

@ -16,7 +16,7 @@
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_io.hpp>
#include "../rsm/shard_rsm.hpp"
#include "src/io/rsm/shard_rsm.hpp"
namespace memgraph::io {