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
a80fb347
Commit
a80fb347
authored
Jan 08, 2014
by
Martin Hurton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some comments regarding method overriding
parent
60d6b89c
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
14 additions
and
14 deletions
+14
-14
dealer.hpp
src/dealer.hpp
+1
-1
object.hpp
src/object.hpp
+1
-1
pair.hpp
src/pair.hpp
+1
-1
pull.hpp
src/pull.hpp
+1
-1
push.hpp
src/push.hpp
+1
-1
rep.hpp
src/rep.hpp
+1
-1
req.hpp
src/req.hpp
+2
-2
router.hpp
src/router.hpp
+1
-1
socket_base.hpp
src/socket_base.hpp
+1
-1
stream.hpp
src/stream.hpp
+1
-1
sub.cpp
src/sub.cpp
+2
-2
xsub.hpp
src/xsub.hpp
+1
-1
No files found.
src/dealer.hpp
View file @
a80fb347
...
...
@@ -44,7 +44,7 @@ namespace zmq
protected
:
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xsetsockopt
(
int
option_
,
const
void
*
optval_
,
size_t
optvallen_
);
int
xsend
(
zmq
::
msg_t
*
msg_
);
...
...
src/object.hpp
View file @
a80fb347
...
...
@@ -95,7 +95,7 @@ namespace zmq
void
send_reaped
();
void
send_done
();
// These handlers can be over
loa
ded by the derived objects. They are
// These handlers can be over
ri
ded by the derived objects. They are
// called when command arrives from another thread.
virtual
void
process_stop
();
virtual
void
process_plug
();
...
...
src/pair.hpp
View file @
a80fb347
...
...
@@ -39,7 +39,7 @@ namespace zmq
pair_t
(
zmq
::
ctx_t
*
parent_
,
uint32_t
tid_
,
int
sid
);
~
pair_t
();
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xsend
(
zmq
::
msg_t
*
msg_
);
int
xrecv
(
zmq
::
msg_t
*
msg_
);
...
...
src/pull.hpp
View file @
a80fb347
...
...
@@ -42,7 +42,7 @@ namespace zmq
protected
:
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xrecv
(
zmq
::
msg_t
*
msg_
);
bool
xhas_in
();
...
...
src/push.hpp
View file @
a80fb347
...
...
@@ -42,7 +42,7 @@ namespace zmq
protected
:
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xsend
(
zmq
::
msg_t
*
msg_
);
bool
xhas_out
();
...
...
src/rep.hpp
View file @
a80fb347
...
...
@@ -37,7 +37,7 @@ namespace zmq
rep_t
(
zmq
::
ctx_t
*
parent_
,
uint32_t
tid_
,
int
sid
);
~
rep_t
();
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
int
xsend
(
zmq
::
msg_t
*
msg_
);
int
xrecv
(
zmq
::
msg_t
*
msg_
);
bool
xhas_in
();
...
...
src/req.hpp
View file @
a80fb347
...
...
@@ -38,7 +38,7 @@ namespace zmq
req_t
(
zmq
::
ctx_t
*
parent_
,
uint32_t
tid_
,
int
sid_
);
~
req_t
();
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
int
xsend
(
zmq
::
msg_t
*
msg_
);
int
xrecv
(
zmq
::
msg_t
*
msg_
);
bool
xhas_in
();
...
...
@@ -90,7 +90,7 @@ namespace zmq
const
address_t
*
addr_
);
~
req_session_t
();
// Over
load
s of the functions from session_base_t.
// Over
ride
s of the functions from session_base_t.
int
push_msg
(
msg_t
*
msg_
);
void
reset
();
...
...
src/router.hpp
View file @
a80fb347
...
...
@@ -44,7 +44,7 @@ namespace zmq
router_t
(
zmq
::
ctx_t
*
parent_
,
uint32_t
tid_
,
int
sid
);
~
router_t
();
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xsetsockopt
(
int
option_
,
const
void
*
optval_
,
size_t
optvallen_
);
int
xsend
(
zmq
::
msg_t
*
msg_
);
...
...
src/socket_base.hpp
View file @
a80fb347
...
...
@@ -131,7 +131,7 @@ namespace zmq
bool
subscribe_to_all_
=
false
)
=
0
;
// The default implementation assumes there are no specific socket
// options for the particular socket type. If not so, over
load
this
// options for the particular socket type. If not so, over
ride
this
// method.
virtual
int
xsetsockopt
(
int
option_
,
const
void
*
optval_
,
size_t
optvallen_
);
...
...
src/stream.hpp
View file @
a80fb347
...
...
@@ -38,7 +38,7 @@ namespace zmq
stream_t
(
zmq
::
ctx_t
*
parent_
,
uint32_t
tid_
,
int
sid
);
~
stream_t
();
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xsend
(
zmq
::
msg_t
*
msg_
);
int
xrecv
(
zmq
::
msg_t
*
msg_
);
...
...
src/sub.cpp
View file @
a80fb347
...
...
@@ -68,13 +68,13 @@ int zmq::sub_t::xsetsockopt (int option_, const void *optval_,
int
zmq
::
sub_t
::
xsend
(
msg_t
*
)
{
// Over
load
the XSUB's send.
// Over
ride
the XSUB's send.
errno
=
ENOTSUP
;
return
-
1
;
}
bool
zmq
::
sub_t
::
xhas_out
()
{
// Over
load
the XSUB's send.
// Over
ride
the XSUB's send.
return
false
;
}
src/xsub.hpp
View file @
a80fb347
...
...
@@ -43,7 +43,7 @@ namespace zmq
protected
:
// Over
load
s of functions from socket_base_t.
// Over
ride
s of functions from socket_base_t.
void
xattach_pipe
(
zmq
::
pipe_t
*
pipe_
,
bool
subscribe_to_all_
);
int
xsend
(
zmq
::
msg_t
*
msg_
);
bool
xhas_out
();
...
...
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