Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8215237

jdk.jfr.Recording javadoc does not compile

XMLWordPrintable

    • jfr
    • b24

        The class Javadoc of jdk.jfr.Recording contains the following code which does not compile:

        Configuration c = Configuration.getConfiguration("default");
        Recording r = new Recording(c);
        r.start();
        System.gc();
        Thread.sleep(5000);
        r.stop();
        r.copyTo(Files.createTempFile("my-recording", ".jfr"));

        The issue is that Recording has no #copyTo(Path) method. Probably the #dump(Path) method was intended.

        http://mail.openjdk.java.net/pipermail/hotspot-jfr-dev/2018-December/000299.html

              egahlin Erik Gahlin
              egahlin Erik Gahlin
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: