From 60d58a1ccea9c65f4052c5056d174bd5d060184c Mon Sep 17 00:00:00 2001 From: jbhusson <jonah@elixxir.io> Date: Tue, 13 Sep 2022 14:20:24 -0400 Subject: [PATCH] Add suggested values for NewDummyTrafficManager inputs --- bindings/dummy.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/dummy.go b/bindings/dummy.go index 9a0c5c9d8..e0915c6cf 100644 --- a/bindings/dummy.go +++ b/bindings/dummy.go @@ -29,12 +29,12 @@ type DummyTraffic struct { // Parameters: // - cmixId - a Cmix object ID in the tracker. // - maxNumMessages - the upper bound of the random number of messages sent -// each sending cycle. +// each sending cycle. Suggested value: 5. // - avgSendDeltaMS - the average duration, in milliseconds, to wait between -// sends. +// sends. Suggested value: 60000. // - randomRangeMS - the upper bound of the interval between sending cycles, in // milliseconds. Sends occur every avgSendDeltaMS +/- a random duration with -// an upper bound of randomRangeMS. +// an upper bound of randomRangeMS. Suggested value: 1000. func NewDummyTrafficManager(cmixId, maxNumMessages, avgSendDeltaMS, randomRangeMS int) (*DummyTraffic, error) { -- GitLab