AggregatorConfig Constructor (NullableUInt64, NullableUInt64, NullableUInt64, NullableUInt64, IListString)
|
Create new aggregator configuration data instance
Namespace:
Guardtime.KSI.Service
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic AggregatorConfig(
Nullable<ulong> maxLevel,
Nullable<ulong> aggregationAlgorithm,
Nullable<ulong> aggregationPeriod,
Nullable<ulong> maxRequests,
IList<string> parentsUris
)
Public Sub New (
maxLevel As Nullable(Of ULong),
aggregationAlgorithm As Nullable(Of ULong),
aggregationPeriod As Nullable(Of ULong),
maxRequests As Nullable(Of ULong),
parentsUris As IList(Of String)
)
public:
AggregatorConfig(
Nullable<unsigned long long> maxLevel,
Nullable<unsigned long long> aggregationAlgorithm,
Nullable<unsigned long long> aggregationPeriod,
Nullable<unsigned long long> maxRequests,
IList<String^>^ parentsUris
)
new :
maxLevel : Nullable<uint64> *
aggregationAlgorithm : Nullable<uint64> *
aggregationPeriod : Nullable<uint64> *
maxRequests : Nullable<uint64> *
parentsUris : IList<string> -> AggregatorConfig
Parameters
- maxLevel
- Type: SystemNullableUInt64
Maximum level value that the nodes in the client's aggregation tree are allowed to have - aggregationAlgorithm
- Type: SystemNullableUInt64
Identifier of the hash function that the aggregator is using for aggregation tree computation - aggregationPeriod
- Type: SystemNullableUInt64
Aggregation periond in milliseconds - maxRequests
- Type: SystemNullableUInt64
Maximum number of requests the client is allowed to send within one parent server's aggregation round - parentsUris
- Type: System.Collections.GenericIListString
Parent server URI (may be several parent servers)
See Also