Package hu.akarnokd.rxjava3.mprs
Class RxJavaMicroprofilePlugins
- java.lang.Object
-
- hu.akarnokd.rxjava3.mprs.RxJavaMicroprofilePlugins
-
public final class RxJavaMicroprofilePlugins extends java.lang.ObjectHooks and global settings for the RxJava Microprofile Reactive Streams Operators services.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanbuildGraph()Returns true if the Stage graph should be builtstatic voiddisableBuildGraph()Globally disable building the Stage graph along with the Flowable graph.static voiddisableImmutableBuilders()Globally disable using immutable builders.static voidenableBuildGraph()Globally enable building the Stage graph along with the Flowable graph.static voidenableImmutableBuilders()Globally enable using immutable builders.static booleanimmutableBuilders()Retruns true if builders are immutable.
-
-
-
Method Detail
-
enableBuildGraph
public static void enableBuildGraph()
Globally enable building the Stage graph along with the Flowable graph.
-
disableBuildGraph
public static void disableBuildGraph()
Globally disable building the Stage graph along with the Flowable graph.
-
buildGraph
public static boolean buildGraph()
Returns true if the Stage graph should be built- Returns:
- true if the Stage graph should be built
-
enableImmutableBuilders
public static void enableImmutableBuilders()
Globally enable using immutable builders.
-
disableImmutableBuilders
public static void disableImmutableBuilders()
Globally disable using immutable builders.
-
immutableBuilders
public static boolean immutableBuilders()
Retruns true if builders are immutable.- Returns:
- true if builders are immutable
-
-