Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@autoletics
Created January 24, 2017 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save autoletics/c2b7338eeec30cd3bf7235453b745630 to your computer and use it in GitHub Desktop.
Save autoletics/c2b7338eeec30cd3bf7235453b745630 to your computer and use it in GitHub Desktop.
import org.jinspired.probes.measure.*;
import org.jinspired.probes.*;
public final class MeasureFactory implements ProbesMeasureFactory {
public void init(Probes.Environment env) {/*..*/}
public ProbesMeasure create(Probes.Context context) {/*..*/}
private static final class Measure implements ProbesMeasure {
public long getValue() {/*..*/}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment