Show / Hide Table of Contents

Class AbstractBundler.Statistics

Statistics class contains the latest bundler statistics.

Inheritance
object
AbstractBundler.Statistics
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: Tangosol.Net.Cache
Assembly: Coherence.dll
Syntax
public class AbstractBundler.Statistics

Properties

AverageBundleSize

An average bundle size for this Bundler.

Declaration
public int AverageBundleSize { get; set; }
Property Value
Type Description
int

AverageBurstDuration

An average time for bundled request processing (burst).

Declaration
public int AverageBurstDuration { get; set; }
Property Value
Type Description
int

AverageThreadWaitDuration

An average thread waiting time caused by under-filled bundle. The wait time includes the time spend in the bundled request processing.

Declaration
public int AverageThreadWaitDuration { get; set; }
Property Value
Type Description
int

AverageThroughput

An average bundled request throughput in size units per millisecond (total bundle size over total processing time)

Declaration
public int AverageThroughput { get; set; }
Property Value
Type Description
int

BundleCountSnapshot

Snapshot for a total number of processed bundled.

Declaration
public long BundleCountSnapshot { get; set; }
Property Value
Type Description
long

BundleSizeSnapshot

Snapshot for a total size of processed bundled.

Declaration
public long BundleSizeSnapshot { get; set; }
Property Value
Type Description
long

BurstDurationSnapshot

Snapshot for a burst duration.

Declaration
public long BurstDurationSnapshot { get; set; }
Property Value
Type Description
long

ThreadWaitSnapshot

Snapshot for a combined thread waiting time.

Declaration
public long ThreadWaitSnapshot { get; set; }
Property Value
Type Description
long

Methods

Reset()

Reset the statistics.

Declaration
public void Reset()

ToString()

Provide a human readable description for the Statistics object. (for debugging).

Declaration
public string ToString()
Returns
Type Description
string

A human readable description for the Statistics object.

In this article
Back to top Copyright © 2000, 2024, Oracle and/or its affiliates.