We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5206d6a commit 04f083aCopy full SHA for 04f083a
src/main/java/com/coditory/quark/context/ContextBuilder.java
@@ -85,6 +85,14 @@ public ContextBuilder setEventBusExceptionHandler(@NotNull DispatchExceptionHand
85
return this;
86
}
87
88
+ @NotNull
89
+ public ContextBuilder setClassLoader(@NotNull ClassLoader classLoader) {
90
+ expectUninitialized();
91
+ expectNonNull(classLoader, "classLoader");
92
+ this.classLoader = classLoader;
93
+ return this;
94
+ }
95
+
96
@NotNull
97
public ContextBuilder registerConfigurationBeans() {
98
return registerConfigurationBeans(true);
0 commit comments