Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
efc9a302
Unverified
Commit
efc9a302
authored
Nov 01, 2018
by
Simon Giesecke
Committed by
GitHub
Nov 01, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3287 from bluca/radix_draft
Problem: new radix tree implementation is experimental
parents
fc411588
8f691229
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
xsub.hpp
src/xsub.hpp
+8
-0
No files found.
src/xsub.hpp
View file @
efc9a302
...
...
@@ -34,7 +34,11 @@
#include "session_base.hpp"
#include "dist.hpp"
#include "fq.hpp"
#ifdef ZMQ_BUILD_DRAFT_API
#include "radix_tree.hpp"
#else
#include "trie.hpp"
#endif
namespace
zmq
{
...
...
@@ -78,7 +82,11 @@ class xsub_t : public socket_base_t
dist_t
_dist
;
// The repository of subscriptions.
#ifdef ZMQ_BUILD_DRAFT_API
radix_tree
_subscriptions
;
#else
trie_t
_subscriptions
;
#endif
// If true, 'message' contains a matching message to return on the
// next recv call.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment