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
be79a9fb
Commit
be79a9fb
authored
Sep 26, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor beautifications
parent
5dae27d0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
1 deletion
+12
-1
config.hpp
src/config.hpp
+3
-1
connect_session.hpp
src/connect_session.hpp
+3
-0
named_session.hpp
src/named_session.hpp
+3
-0
transient_session.hpp
src/transient_session.hpp
+3
-0
No files found.
src/config.hpp
View file @
be79a9fb
...
...
@@ -74,11 +74,13 @@ namespace zmq
// Maximal delay to process command in API thread (in CPU ticks).
// 3,000,000 ticks equals to 1 - 2 milliseconds on current CPUs.
// Note that delay is only applied when there is continuous stream of
// messages to process. If not so, commands are processed immediately.
max_command_delay
=
3000000
,
// Low-precision clock precision in CPU ticks. 1ms. Value of 1000000
// should be OK for CPU frequencies above 1GHz. If should work
// reasonably well f
ro
CPU frequencies above 500MHz. For lower CPU
// reasonably well f
or
CPU frequencies above 500MHz. For lower CPU
// frequencies you may consider lowering this value to get best
// possible latencies.
clock_precision
=
1000000
,
...
...
src/connect_session.hpp
View file @
be79a9fb
...
...
@@ -53,6 +53,9 @@ namespace zmq
// Address to connect to.
std
::
string
protocol
;
std
::
string
address
;
connect_session_t
(
const
connect_session_t
&
);
void
operator
=
(
const
connect_session_t
&
);
};
}
...
...
src/named_session.hpp
View file @
be79a9fb
...
...
@@ -49,6 +49,9 @@ namespace zmq
// Name of the session. Corresponds to the peer's strong identity.
blob_t
name
;
named_session_t
(
const
named_session_t
&
);
void
operator
=
(
const
named_session_t
&
);
};
}
...
...
src/transient_session.hpp
View file @
be79a9fb
...
...
@@ -40,6 +40,9 @@ namespace zmq
// Hook into session's disconnection mechanism.
void
detached
();
transient_session_t
(
const
transient_session_t
&
);
void
operator
=
(
const
transient_session_t
&
);
};
}
...
...
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