Commit 50aea7f9 authored by Dominik Charousset's avatar Dominik Charousset

Remove dead code

parent bec3a24c
...@@ -190,9 +190,6 @@ public: ...@@ -190,9 +190,6 @@ public:
/// A reference-counting pointer to a `stream_manager`. /// A reference-counting pointer to a `stream_manager`.
using stream_manager_ptr = intrusive_ptr<stream_manager>; using stream_manager_ptr = intrusive_ptr<stream_manager>;
/// A container for associating stream IDs to handlers.
using streams_map = std::unordered_map<stream_id, stream_manager_ptr>;
/// The message ID of an outstanding response with its callback. /// The message ID of an outstanding response with its callback.
using pending_response = std::pair<const message_id, behavior>; using pending_response = std::pair<const message_id, behavior>;
......
...@@ -128,15 +128,6 @@ public: ...@@ -128,15 +128,6 @@ public:
/// this scatterer. /// this scatterer.
virtual message make_handshake_token(stream_slot slot) const = 0; virtual message make_handshake_token(stream_slot slot) const = 0;
// -- convenience functions --------------------------------------------------
/// Removes a path from the scatterer.
bool remove_path(stream_slots slot, const strong_actor_ptr& x,
error reason, bool silent);
/// Convenience function for calling `find(x, actor_cast<actor_addr>(x))`.
path_ptr find(stream_slot slot, const strong_actor_ptr& x);
protected: protected:
// -- customization points --------------------------------------------------- // -- customization points ---------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment