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
3d440507
Commit
3d440507
authored
Jan 20, 2015
by
Constantin Rack
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1317 from topher200/master
documentation clarification on pipe::write failure
parents
be23e699
708298ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
pipe.hpp
src/pipe.hpp
+5
-3
No files found.
src/pipe.hpp
View file @
3d440507
...
...
@@ -86,12 +86,14 @@ namespace zmq
// Reads a message to the underlying pipe.
bool
read
(
msg_t
*
msg_
);
// Checks whether messages can be written to the pipe. If writing
// the message would cause high watermark the function returns false.
// Checks whether messages can be written to the pipe. If the pipe is
// closed or if writing the message would cause high watermark the
// function returns false.
bool
check_write
();
// Writes a message to the underlying pipe. Returns false if the
// message cannot be written because high watermark was reached.
// message does not pass check_write. If false, the message object
// retains ownership of its message buffer.
bool
write
(
msg_t
*
msg_
);
// Remove unfinished parts of the outbound message from the pipe.
...
...
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