src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/Dispatcher.java
branchJEP-349-branch
changeset 58197 0ef79bd7fb5c
parent 58153 0f7562601338
child 58200 2d147d680311
--- a/src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/Dispatcher.java	Tue Sep 17 19:37:49 2019 +0200
+++ b/src/jdk.jfr/share/classes/jdk/jfr/internal/consumer/Dispatcher.java	Wed Sep 18 03:45:46 2019 +0200
@@ -12,34 +12,35 @@
 
 final class Dispatcher {
 
-    public final static class EventDispatcher {
-        final static EventDispatcher[] NO_DISPATCHERS = new EventDispatcher[0];
-        final String eventName;
-        public final Consumer<RecordedEvent> action;
+    final static class EventDispatcher {
+        private final static EventDispatcher[] NO_DISPATCHERS = new EventDispatcher[0];
 
-        public EventDispatcher(Consumer<RecordedEvent> action) {
-            this(null, action);
-        }
+        private final String eventName;
+        private final Consumer<RecordedEvent> action;
 
         public EventDispatcher(String eventName, Consumer<RecordedEvent> action) {
             this.eventName = eventName;
             this.action = action;
         }
 
-        public void offer(RecordedEvent event) {
+        private void offer(RecordedEvent event) {
             action.accept(event);
         }
 
-        public boolean accepts(EventType eventType) {
+        private boolean accepts(EventType eventType) {
             return (eventName == null || eventType.getName().equals(eventName));
         }
+
+        public Consumer<RecordedEvent> getAction() {
+            return action;
+        }
     }
 
-    final Consumer<Throwable>[] errorActions;
-    final Runnable[] flushActions;
-    final Runnable[] closeActions;
-    final EventDispatcher[] dispatchers;
-    final LongMap<EventDispatcher[]> dispatcherLookup = new LongMap<>();
+    private final Consumer<Throwable>[] errorActions;
+    private final Runnable[] flushActions;
+    private final Runnable[] closeActions;
+    private final EventDispatcher[] dispatchers;
+    private final LongMap<EventDispatcher[]> dispatcherLookup = new LongMap<>();
     final ParserConfiguration parserConfiguration;
     final Instant startTime;
     final Instant endTime;
@@ -63,6 +64,28 @@
         this.endNanos = c.endNanos;
     }
 
+    public void runFlushActions() {
+        Runnable[] flushActions = this.flushActions;
+        for (int i = 0; i < flushActions.length; i++) {
+            try {
+                flushActions[i].run();
+            } catch (Exception e) {
+                handleError(e);
+            }
+        }
+    }
+
+    public void runCloseActions() {
+        Runnable[] closeActions = this.closeActions;
+        for (int i = 0; i < closeActions.length; i++) {
+            try {
+                closeActions[i].run();
+            } catch (Exception e) {
+                handleError(e);
+            }
+        }
+    }
+
     private static ParserFilter buildFilter(EventDispatcher[] dispatchers) {
         ParserFilter ef = new ParserFilter();
         for (EventDispatcher ed : dispatchers) {
@@ -75,7 +98,7 @@
         return ef;
     }
 
-    protected final void dispatch(RecordedEvent event) {
+    void dispatch(RecordedEvent event) {
         EventType type = event.getEventType();
         EventDispatcher[] dispatchers = null;
         if (type == cacheEventType) {
@@ -121,7 +144,7 @@
         }
     }
 
-    public void handleError(Throwable e) {
+    private void handleError(Throwable e) {
         Consumer<?>[] consumers = this.errorActions;
         if (consumers.length == 0) {
             defaultErrorHandler(e);
@@ -134,29 +157,7 @@
         }
     }
 
-    public void runFlushActions() {
-        Runnable[] flushActions = this.flushActions;
-        for (int i = 0; i < flushActions.length; i++) {
-            try {
-                flushActions[i].run();
-            } catch (Exception e) {
-                handleError(e);
-            }
-        }
-    }
-
-    public void runCloseActions() {
-        Runnable[] closeActions = this.closeActions;
-        for (int i = 0; i < closeActions.length; i++) {
-            try {
-                closeActions[i].run();
-            } catch (Exception e) {
-                handleError(e);
-            }
-        }
-    }
-
-    void defaultErrorHandler(Throwable e) {
+    private void defaultErrorHandler(Throwable e) {
         e.printStackTrace();
     }
 }