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
7fc15c21
Commit
7fc15c21
authored
Jun 03, 2010
by
Martin Lucina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation: zmq_cpp(7) update for 2.0.7
parent
10f4bf3f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
zmq_cpp.txt
doc/zmq_cpp.txt
+11
-4
No files found.
doc/zmq_cpp.txt
View file @
7fc15c21
...
...
@@ -34,7 +34,7 @@ initialisation and termination of a 0MQ _context_.
Constructor
^^^^^^^^^^^
[verse]
*context_t::context_t(int '
app_threads', int 'io_threads', int 'flags' = 0
)*
*context_t::context_t(int '
io_threads'
)*
Maps to the _zmq_init()_ function, as described in linkzmq:zmq_init[3].
...
...
@@ -74,6 +74,13 @@ Calls the _zmq_close()_ function, as described in linkzmq:zmq_close[3].
Methods
^^^^^^^
[verse]
*void socket_t::getsockopt(int 'option_name', void '*option_value', size_t
'*option_len')*
Maps to the _zmq_getsockopt()_ function, as described in
linkzmq:zmq_getsockopt[3].
[verse]
*void socket_t::setsockopt(int 'option_name', const void '*option_value', size_t
'option_len')*
...
...
@@ -82,12 +89,12 @@ Maps to the _zmq_setsockopt()_ function, as described in
linkzmq:zmq_setsockopt[3].
[verse]
*void socket_t::bind(const char '*
address
')*
*void socket_t::bind(const char '*
endpoint
')*
Maps to the _zmq_bind()_ function, as described in linkzmq:zmq_bind[3].
[verse]
*void socket_t::connect(const char '*
address
')*
*void socket_t::connect(const char '*
endpoint
')*
Maps to the _zmq_connect()_ function, as described in linkzmq:zmq_connect[3].
...
...
@@ -179,7 +186,7 @@ function to convert the error code to human-readable string.
EXAMPLE
-------
----
zmq::context_t ctx (1
, 1
);
zmq::context_t ctx (1);
zmq::socket_t s (ctx, ZMQ_PUB);
s.connect ("tcp://192.168.0.115:5555");
zmq::message_t msg (100);
...
...
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