32
32
import java .util .concurrent .TimeUnit ;
33
33
import java .util .concurrent .atomic .AtomicInteger ;
34
34
import java .util .function .Function ;
35
+ import javax .management .MBeanServerConnection ;
35
36
36
37
import jdk .jfr .Event ;
37
38
import jdk .jfr .Name ;
50
51
*/
51
52
public class TestRemoteDump {
52
53
54
+ private static final MBeanServerConnection CONNECTION = ManagementFactory .getPlatformMBeanServer ();
55
+
53
56
@ Name ("RemoteDumpTest" )
54
57
static class DumpEvent extends Event {
55
58
}
@@ -64,7 +67,7 @@ public static void main(String... args) throws Exception {
64
67
65
68
private static void testUnstarted () throws Exception {
66
69
Path path = Path .of ("recording.jfr" );
67
- var rs = new RecordingStream ( );
70
+ var rs = new RemoteRecordingStream ( CONNECTION );
68
71
rs .setMaxAge (Duration .ofHours (1 ));
69
72
try {
70
73
rs .dump (path );
@@ -76,7 +79,7 @@ private static void testUnstarted() throws Exception {
76
79
77
80
private static void testClosed () throws Exception {
78
81
Path path = Path .of ("recording.jfr" );
79
- var rs = new RecordingStream ( );
82
+ var rs = new RemoteRecordingStream ( CONNECTION );
80
83
rs .setMaxAge (Duration .ofHours (1 ));
81
84
rs .startAsync ();
82
85
rs .close ();
@@ -90,8 +93,7 @@ private static void testClosed() throws Exception {
90
93
91
94
private static void testMultipleDumps () throws Exception {
92
95
CountDownLatch latch = new CountDownLatch (1 );
93
- var conn = ManagementFactory .getPlatformMBeanServer ();
94
- try (var rs = new RemoteRecordingStream (conn )) {
96
+ try (var rs = new RemoteRecordingStream (CONNECTION )) {
95
97
rs .setMaxAge (Duration .ofHours (1 ));
96
98
rs .onEvent (e -> {
97
99
latch .countDown ();
@@ -128,8 +130,7 @@ private static void testMultipleDumps() throws Exception {
128
130
129
131
private static void testOneDump () throws Exception {
130
132
CountDownLatch latch = new CountDownLatch (1 );
131
- var conn = ManagementFactory .getPlatformMBeanServer ();
132
- try (var rs = new RemoteRecordingStream (conn )) {
133
+ try (var rs = new RemoteRecordingStream (CONNECTION )) {
133
134
rs .setMaxSize (5_000_000 );
134
135
rs .onEvent (e -> {
135
136
latch .countDown ();
@@ -150,7 +151,7 @@ private static void testOneDump() throws Exception {
150
151
151
152
private static void testEventAfterDump () throws Exception {
152
153
CountDownLatch latch = new CountDownLatch (1 );
153
- try (var rs = new RecordingStream ( )) {
154
+ try (var rs = new RemoteRecordingStream ( CONNECTION )) {
154
155
rs .setMaxAge (Duration .ofHours (1 ));
155
156
rs .onEvent (e -> {
156
157
latch .countDown ();
0 commit comments