Skip to content
This repository was archived by the owner on Dec 18, 2023. It is now read-only.

Commit 87a6ed2

Browse files
Sergey KanzhelevSergey Kanzhelev
authored andcommitted
whitespaces for stylecop
1 parent 6379e7f commit 87a6ed2

114 files changed

Lines changed: 282 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/OpenCensus/Api/Common/IClock.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace OpenCensus.Common
88
public interface IClock
99
{
1010
ITimestamp Now { get; }
11+
1112
long NowNanos { get; }
1213
}
1314
}

src/OpenCensus/Api/Common/IDuration.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ namespace OpenCensus.Common
77
public interface IDuration : IComparable<IDuration>
88
{
99
long Seconds { get; }
10+
1011
int Nanos { get; }
1112
}
1213
}

src/OpenCensus/Api/Common/ITimestamp.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ namespace OpenCensus.Common
77
public interface ITimestamp : IComparable<ITimestamp>
88
{
99
long Seconds { get; }
10+
1011
int Nanos { get; }
12+
1113
ITimestamp AddNanos(long nanosToAdd);
14+
1215
ITimestamp AddDuration(IDuration duration);
16+
1317
IDuration SubtractTimestamp(ITimestamp timestamp);
1418
}
1519
}

src/OpenCensus/Api/Stats/Aggregations/IDistributionData.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,15 @@ namespace OpenCensus.Stats.Aggregations
77
public interface IDistributionData : IAggregationData
88
{
99
double Mean { get; }
10+
1011
long Count { get; }
12+
1113
double Min { get; }
14+
1215
double Max { get; }
16+
1317
double SumOfSquaredDeviations { get; }
18+
1419
IList<long> BucketCounts { get; }
1520
}
1621
}

src/OpenCensus/Api/Stats/Aggregations/IMeanData.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ namespace OpenCensus.Stats.Aggregations
77
public interface IMeanData : IAggregationData
88
{
99
double Mean { get; }
10+
1011
long Count { get; }
12+
1113
double Max { get; }
14+
1215
double Min { get; }
1316
}
1417
}

src/OpenCensus/Api/Stats/IMeasure.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ M Match<M>(
1111
Func<IMeasureDouble, M> p0,
1212
Func<IMeasureLong, M> p1,
1313
Func<IMeasure, M> defaultFunction);
14+
1415
string Name { get; }
16+
1517
string Description { get; }
18+
1619
string Unit { get; }
1720
}
1821
}

src/OpenCensus/Api/Stats/IMeasurement.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ namespace OpenCensus.Stats
88
public interface IMeasurement
99
{
1010
M Match<M>(Func<IMeasurementDouble, M> p0, Func<IMeasurementLong, M> p1, Func<IMeasurement, M> defaultFunction);
11+
1112
IMeasure Measure { get; }
1213
}
1314
}

src/OpenCensus/Api/Stats/IStats.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ namespace OpenCensus.Stats
77
public interface IStats
88
{
99
IStatsRecorder StatsRecorder { get; }
10+
1011
IViewManager ViewManager { get; }
12+
1113
StatsCollectionState State { get; set; }
1214
}
1315
}

src/OpenCensus/Api/Stats/IStatsComponent.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ namespace OpenCensus.Stats
77
public interface IStatsComponent
88
{
99
IViewManager ViewManager { get; }
10+
1011
IStatsRecorder StatsRecorder { get; }
12+
1113
StatsCollectionState State { get; }
1214
}
1315
}

src/OpenCensus/Api/Stats/IView.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@ namespace OpenCensus.Stats
88
public interface IView
99
{
1010
IViewName Name { get; }
11+
1112
string Description { get; }
13+
1214
IMeasure Measure { get; }
15+
1316
IAggregation Aggregation { get; }
17+
1418
IList<ITagKey> Columns { get; }
1519
}
1620
}

0 commit comments

Comments
 (0)