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
7cfd03ba
Commit
7cfd03ba
authored
May 27, 2012
by
Martin Hurton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unplug from i_engine interface
parent
5db30fe9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
6 deletions
+9
-6
i_engine.hpp
src/i_engine.hpp
+0
-3
pgm_receiver.hpp
src/pgm_receiver.hpp
+3
-1
pgm_sender.hpp
src/pgm_sender.hpp
+3
-1
stream_engine.hpp
src/stream_engine.hpp
+3
-1
No files found.
src/i_engine.hpp
View file @
7cfd03ba
...
...
@@ -37,9 +37,6 @@ namespace zmq
virtual
void
plug
(
zmq
::
io_thread_t
*
io_thread_
,
class
session_base_t
*
session_
)
=
0
;
// Unplug the engine from the session.
virtual
void
unplug
()
=
0
;
// Terminate and deallocate the engine. Note that 'detached'
// events are not fired on termination.
virtual
void
terminate
()
=
0
;
...
...
src/pgm_receiver.hpp
View file @
7cfd03ba
...
...
@@ -59,7 +59,6 @@ namespace zmq
// i_engine interface implementation.
void
plug
(
zmq
::
io_thread_t
*
io_thread_
,
zmq
::
session_base_t
*
session_
);
void
unplug
();
void
terminate
();
void
activate_in
();
void
activate_out
();
...
...
@@ -70,6 +69,9 @@ namespace zmq
private
:
// Unplug the engine from the session.
void
unplug
();
// PGM is not able to move subscriptions upstream. Thus, drop all
// the pending subscriptions.
void
drop_subscriptions
();
...
...
src/pgm_sender.hpp
View file @
7cfd03ba
...
...
@@ -57,7 +57,6 @@ namespace zmq
// i_engine interface implementation.
void
plug
(
zmq
::
io_thread_t
*
io_thread_
,
zmq
::
session_base_t
*
session_
);
void
unplug
();
void
terminate
();
void
activate_in
();
void
activate_out
();
...
...
@@ -69,6 +68,9 @@ namespace zmq
private
:
// Unplug the engine from the session.
void
unplug
();
// TX and RX timeout timer ID's.
enum
{
tx_timer_id
=
0xa0
,
rx_timer_id
=
0xa1
};
...
...
src/stream_engine.hpp
View file @
7cfd03ba
...
...
@@ -51,7 +51,6 @@ namespace zmq
// i_engine interface implementation.
void
plug
(
zmq
::
io_thread_t
*
io_thread_
,
zmq
::
session_base_t
*
session_
);
void
unplug
();
void
terminate
();
void
activate_in
();
void
activate_out
();
...
...
@@ -62,6 +61,9 @@ namespace zmq
private
:
// Unplug the engine from the session.
void
unplug
();
// Function to handle network disconnections.
void
error
();
...
...
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