You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/graphql/GraphQlProperties.java
+23
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,8 @@ public class GraphQlProperties {
43
43
44
44
privatefinalRsocketrsocket = newRsocket();
45
45
46
+
privatefinalSsesse = newSse();
47
+
46
48
publicGraphiqlgetGraphiql() {
47
49
returnthis.graphiql;
48
50
}
@@ -67,6 +69,10 @@ public Rsocket getRsocket() {
67
69
returnthis.rsocket;
68
70
}
69
71
72
+
publicSsegetSse() {
73
+
returnthis.sse;
74
+
}
75
+
70
76
publicstaticclassSchema {
71
77
72
78
/**
@@ -265,4 +271,21 @@ public void setMapping(String mapping) {
265
271
266
272
}
267
273
274
+
publicstaticclassSse {
275
+
276
+
/**
277
+
* Time required for concurrent handling to complete.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/graphql/servlet/GraphQlWebMvcAutoConfiguration.java
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/graphql/servlet/GraphQlWebMvcAutoConfigurationTests.java
0 commit comments