// the messages per second to issue when in bootstrapping mode.
initialIssuanceMPS=1
// CfgBootstrapTimeUnit defines the time unit (in seconds) of the issuance rate (e.g., 3 messages per 12 seconds).
CfgBootstrapTimeUnit="bootstrap.timeUnit"
// the messages per period to issue when in bootstrapping mode.
initialIssuanceRate=1
// the value which determines a continuous issuance of messages from the bootstrap plugin.
continuousIssuance=-1
)
...
...
@@ -30,6 +32,7 @@ const (
funcinit(){
flag.Int(CfgBootstrapInitialIssuanceTimePeriodSec,-1,"the initial time period of how long the node should be issuing messages when started in bootstrapping mode. "+
"if the value is set to -1, the issuance is continuous.")
flag.Int(CfgBootstrapTimeUnit,5,"the time unit (in seconds) of the issuance rate (e.g., 1 messages per 5 seconds).")