Class ConsumerUsageSummary
Provides consumer's usage statistics.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class ConsumerUsageSummary
Constructors
ConsumerUsageSummary()
Declaration
public ConsumerUsageSummary()
Properties
AverageBytes
Gets or sets the average number of bytes received and sent processing a service call.
Declaration
public long AverageBytes { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
AverageDuration
Gets or sets the average duration (in milliseconds) of a service call (time between receiving request message and returning response message).
Declaration
public long AverageDuration { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
ConsumerId
Gets or sets the identifier of the consumer.
Declaration
public int ConsumerId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
ConsumerName
Gets or sets the name of the consumer.
Declaration
public string ConsumerName { get; set; }
Property Value
Type | Description |
---|---|
String |
ExceptionCount
Gets or sets the number of calls resulted in communication errors.
Declaration
public long ExceptionCount { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
FailureCount
Gets or sets the number of faulted calls (faults) that consumer experienced.
Declaration
public long FailureCount { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
IsDeleted
Gets or sets flag indicating that consumer has been deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
TotalCount
Gets or sets the total number of calls (messages) that consumer received.
Declaration
public long TotalCount { get; set; }
Property Value
Type | Description |
---|---|
Int64 |