Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add the missing enclosing interface #854

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public interface DoubleCounter extends Counter<BoundDoubleCounter> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundDoubleCounter extends BoundInstrument {
interface BoundDoubleCounter extends InstrumentWithBinding.BoundInstrument {
/**
* Adds the given {@code delta} to the current value. The values can be negative iff monotonic
* was set to {@code false}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public interface DoubleMeasure extends Measure<BoundDoubleMeasure> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundDoubleMeasure extends BoundInstrument {
interface BoundDoubleMeasure extends InstrumentWithBinding.BoundInstrument {
/**
* Records the given measurement, associated with the current {@code Context}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public interface LongCounter extends Counter<BoundLongCounter> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundLongCounter extends BoundInstrument {
interface BoundLongCounter extends InstrumentWithBinding.BoundInstrument {

/**
* Adds the given {@code delta} to the current value. The values can be negative iff monotonic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public interface LongMeasure extends Measure<BoundLongMeasure> {
* @since 0.1.0
*/
@ThreadSafe
interface BoundLongMeasure extends BoundInstrument {
interface BoundLongMeasure extends InstrumentWithBinding.BoundInstrument {
/**
* Records the given measurement, associated with the current {@code Context}.
*
Expand Down