src/jdk.jfr/share/classes/jdk/jfr/consumer/EventDirectoryStream.java
branchJEP-349-branch
changeset 57385 7d9d4f629f6e
parent 57380 6a7e7743b82f
child 57386 acdd0dbe37ee
equal deleted inserted replaced
57381:ce265e404c64 57385:7d9d4f629f6e
    45 
    45 
    46         public EventSetConsumer(AccessControlContext acc) throws IOException {
    46         public EventSetConsumer(AccessControlContext acc) throws IOException {
    47             super(acc);
    47             super(acc);
    48         }
    48         }
    49 
    49 
    50         public void process() throws Exception, IOException {
    50         public void process() throws IOException {
    51             this.location = EventSetLocation.current();
    51             this.location = EventSetLocation.current();
    52             this.eventSet = location.acquire(startNanos, null); // use timestamp
    52             this.eventSet = location.acquire(startNanos, null); // use timestamp
    53                                                                 // from
    53                                                                 // from
    54             if (eventSet == null) {
    54             if (eventSet == null) {
    55                 return;
    55                 return;