File tree 2 files changed +34
-0
lines changed
src/jdk.jfr/share/classes/jdk/jfr/consumer
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -242,6 +242,10 @@ static EventStream openFile(Path file) throws IOException {
242
242
/**
243
243
* Releases all resources associated with this stream.
244
244
* <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>
245
249
* Closing a previously closed stream has no effect.
246
250
*/
247
251
void close ();
@@ -320,6 +324,8 @@ static EventStream openFile(Path file) throws IOException {
320
324
* Start processing of actions.
321
325
* <p>
322
326
* Actions are performed in the current thread.
327
+ * <p>
328
+ * To stop the stream, use the {@code #close()} method.
323
329
*
324
330
* @throws IllegalStateException if the stream is already started or closed
325
331
*/
@@ -329,6 +335,8 @@ static EventStream openFile(Path file) throws IOException {
329
335
* Start asynchronous processing of actions.
330
336
* <p>
331
337
* Actions are performed in a single separate thread.
338
+ * <p>
339
+ * To stop the stream, use the {@code #close()} method.
332
340
*
333
341
* @throws IllegalStateException if the stream is already started or closed
334
342
*/
Original file line number Diff line number Diff line change @@ -329,6 +329,32 @@ public void start() {
329
329
directoryStream .start (startNanos );
330
330
}
331
331
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
+ */
332
358
@ Override
333
359
public void startAsync () {
334
360
PlatformRecording pr = PrivateAccess .getInstance ().getPlatformRecording (recording );
You can’t perform that action at this time.
0 commit comments