Click or drag to resize

IHasMetrics Interface

Provides additional metrics about disk and network activity.

Namespace:  Ookii.Jumbo.Jet
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public interface IHasMetrics

The IHasMetrics type exposes the following members.

Properties
  NameDescription
Public propertyLocalBytesRead
Gets the number of bytes read from the local disk.
Public propertyLocalBytesWritten
Gets the number of bytes written to the local disk.
Public propertyNetworkBytesRead
Gets the number of bytes read over the network.
Public propertyNetworkBytesWritten
Gets the number of bytes written over the network.
Top
Remarks

Can be used by channels and record readers and writers to provide additional metrics. If you use this interface on a record reader or writer it should only consider reads/writes that are not already reported via the regular InputBytes and OutputBytes properties.

It is used by e.g. the MergeRecordReaderT to report the additional reads and writes it does if more than one merge pass is used.

See Also