Skip to content

Commit f09cda2

Browse files
committedMar 9, 2020
8239584: EventStream::close should state that stream will be stopped
Reviewed-by: mgronlun, mseledtsov
1 parent 672992f commit f09cda2

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
 

‎src/jdk.jfr/share/classes/jdk/jfr/consumer/EventStream.java

+8
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,10 @@ static EventStream openFile(Path file) throws IOException {
242242
/**
243243
* Releases all resources associated with this stream.
244244
* <p>
245+
* If a stream is started, asynchronously or synchronously, it is stopped
246+
* immediately or after the next flush. This method does <em>NOT</em>
247+
* guarantee that all registered actions are completed before return.
248+
* <p>
245249
* Closing a previously closed stream has no effect.
246250
*/
247251
void close();
@@ -320,6 +324,8 @@ static EventStream openFile(Path file) throws IOException {
320324
* Start processing of actions.
321325
* <p>
322326
* Actions are performed in the current thread.
327+
* <p>
328+
* To stop the stream, use the {@code #close()} method.
323329
*
324330
* @throws IllegalStateException if the stream is already started or closed
325331
*/
@@ -329,6 +335,8 @@ static EventStream openFile(Path file) throws IOException {
329335
* Start asynchronous processing of actions.
330336
* <p>
331337
* Actions are performed in a single separate thread.
338+
* <p>
339+
* To stop the stream, use the {@code #close()} method.
332340
*
333341
* @throws IllegalStateException if the stream is already started or closed
334342
*/

‎src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordingStream.java

+26
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,32 @@ public void start() {
329329
directoryStream.start(startNanos);
330330
}
331331

332+
/**
333+
* Start asynchronous processing of actions.
334+
* <p>
335+
* Actions are performed in a single separate thread.
336+
* <p>
337+
* To stop the stream, use the {@code #close()} method.
338+
* <p>
339+
* The following example prints the CPU usage for ten seconds. When
340+
* the current thread leaves the try-with-resources block the
341+
* stream is stopped/closed.
342+
* <pre>
343+
* <code>
344+
* try (var stream = new RecordingStream()) {
345+
* stream.enable("jdk.CPULoad").withPeriod(Duration.ofSeconds(1));
346+
* stream.onEvent("jdk.CPULoad", event -> {
347+
* System.out.println(event);
348+
* });
349+
* stream.startAsync();
350+
* Thread.sleep(10_000);
351+
* }
352+
* </code>
353+
* </pre>
354+
*
355+
* @throws IllegalStateException if the stream is already started or closed
356+
*
357+
*/
332358
@Override
333359
public void startAsync() {
334360
PlatformRecording pr = PrivateAccess.getInstance().getPlatformRecording(recording);

0 commit comments

Comments
 (0)
Please sign in to comment.