LWM is computed rather than explicitly specified by user

This commit is contained in:
Martin Sustrik
2010-05-25 15:03:57 +02:00
parent f34a468a26
commit 8408ae066d
9 changed files with 46 additions and 51 deletions

View File

@@ -58,7 +58,10 @@ namespace zmq
// So, if there are 10 messages that fit into the batch size, all of
// them may be written by a single 'send' system call, thus avoiding
// unnecessary network stack traversals.
out_batch_size = 8192,
out_batch_size = 8192,
// Maximal delta between high and low watermark.
max_wm_delta = 1024,
// Maximum number of events the I/O thread can process in one go.
max_io_events = 256,